Skip to content

PostgresExtensionsProps

Properties for defining a PostgresExtensions.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-rds-postgresextensions

Initializer

import { PostgresExtensionsProps } from '@alicloud/ros-cdk-rds'
const postgresExtensionsProps: PostgresExtensionsProps = { ... }

Properties

Name Type Description
accountName string | @alicloud/ros-cdk-core.IResolvable Property accountName: The account of the user who owns the extension.
dbInstanceId string | @alicloud/ros-cdk-core.IResolvable Property dbInstanceId: The instance ID.
dbName string | @alicloud/ros-cdk-core.IResolvable Property dbName: The database name.
extensions @alicloud/ros-cdk-core.IResolvable | string | @alicloud/ros-cdk-core.IResolvable[] Property extensions: The extensions that you want to install.
resourceGroupId string | @alicloud/ros-cdk-core.IResolvable Property resourceGroupId: The ID of the resource group.
riskConfirmed boolean | @alicloud/ros-cdk-core.IResolvable Property riskConfirmed: The risk description that you need to confirm.
sourceDatabase string | @alicloud/ros-cdk-core.IResolvable Property sourceDatabase: The source database from which you want to synchronize the extension to the destination database.

accountNameRequired

public readonly accountName: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property accountName: The account of the user who owns the extension.

Only privileged accounts are supported.


dbInstanceIdRequired

public readonly dbInstanceId: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property dbInstanceId: The instance ID.

You can call the DescribeDBInstances operation to query the instance ID.


dbNameRequired

public readonly dbName: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property dbName: The database name.

You can call the DescribeDatabases operation to query the database name.


extensionsOptional

public readonly extensions: IResolvable | string | IResolvable[];
  • Type: @alicloud/ros-cdk-core.IResolvable | string | @alicloud/ros-cdk-core.IResolvable[]

Property extensions: The extensions that you want to install.


resourceGroupIdOptional

public readonly resourceGroupId: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property resourceGroupId: The ID of the resource group.


riskConfirmedOptional

public readonly riskConfirmed: boolean | IResolvable;
  • Type: boolean | @alicloud/ros-cdk-core.IResolvable

Property riskConfirmed: The risk description that you need to confirm.

If your instance runs an outdated minor engine version, installing specific extensions on the instance poses security risks. Proceed with the installation only after you acknowledge these risks. Valid values: true false Note For more information about the risks, see Limits on extension creation for ApsaraDB RDS for PostgreSQL instances.


sourceDatabaseOptional

public readonly sourceDatabase: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property sourceDatabase: The source database from which you want to synchronize the extension to the destination database.

If you do not specify the Extensions parameter, you must specify this parameter.