interface InstanceEngineBindOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.RDS.InstanceEngineBindOptions |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#InstanceEngineBindOptions |
![]() | software.amazon.awscdk.services.rds.InstanceEngineBindOptions |
![]() | aws_cdk.aws_rds.InstanceEngineBindOptions |
![]() | aws-cdk-lib » aws_rds » InstanceEngineBindOptions |
The options passed to IInstanceEngine.bind
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iam as iam } from 'aws-cdk-lib';
import { aws_rds as rds } from 'aws-cdk-lib';
declare const optionGroup: rds.OptionGroup;
declare const role: iam.Role;
const instanceEngineBindOptions: rds.InstanceEngineBindOptions = {
domain: 'domain',
optionGroup: optionGroup,
s3ExportRole: role,
s3ImportRole: role,
timezone: 'timezone',
};
Properties
Name | Type | Description |
---|---|---|
domain? | string | The Active Directory directory ID to create the DB instance in. |
option | IOption | The option group of the database. |
s3 | IRole | The role used for S3 exporting. |
s3 | IRole | The role used for S3 importing. |
timezone? | string | The timezone of the database, set by the customer. |
domain?
Type:
string
(optional, default: none (it's an optional field))
The Active Directory directory ID to create the DB instance in.
optionGroup?
Type:
IOption
(optional, default: none)
The option group of the database.
s3ExportRole?
Type:
IRole
(optional, default: none)
The role used for S3 exporting.
s3ImportRole?
Type:
IRole
(optional, default: none)
The role used for S3 importing.
timezone?
Type:
string
(optional, default: none (it's an optional field))
The timezone of the database, set by the customer.