interface InstanceEngineBindOptions
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RDS.InstanceEngineBindOptions |
Java | software.amazon.awscdk.services.rds.InstanceEngineBindOptions |
Python | aws_cdk.aws_rds.InstanceEngineBindOptions |
TypeScript (source) | @aws-cdk/aws-rds » InstanceEngineBindOptions |
The options passed to {@link IInstanceEngine.bind}.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iam from '@aws-cdk/aws-iam';
import * as rds from '@aws-cdk/aws-rds';
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.