interface CfnDBSnapshotMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RDS.CfnDBSnapshotMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrds#CfnDBSnapshotMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.rds.CfnDBSnapshotMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_rds.CfnDBSnapshotMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rds » CfnDBSnapshotMixinProps |
Properties for CfnDBSnapshotPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsnapshot.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rds as rds } from '@aws-cdk/cfn-property-mixins';
const cfnDBSnapshotMixinProps: rds.CfnDBSnapshotMixinProps = {
dbInstanceIdentifier: 'dbInstanceIdentifier',
dbSnapshotIdentifier: 'dbSnapshotIdentifier',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The identifier of the DB instance that you want to create the snapshot of. |
| db | string | The identifier for the DB snapshot. |
| tags? | Cfn[] | The tags to be assigned to the DB snapshot. |
dbInstanceIdentifier?
Type:
string
(optional)
The identifier of the DB instance that you want to create the snapshot of.
dbSnapshotIdentifier?
Type:
string
(optional)
The identifier for the DB snapshot.
Must contain from 1 to 255 letters, numbers, or hyphens. First character must be a letter. Can't end with a hyphen or contain two consecutive hyphens.
tags?
Type:
Cfn[]
(optional)
The tags to be assigned to the DB snapshot.

.NET
Go
Java
Python
TypeScript