interface CfnDatabaseSnapshotMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lightsail.CfnDatabaseSnapshotMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslightsail#CfnDatabaseSnapshotMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.lightsail.CfnDatabaseSnapshotMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_lightsail.CfnDatabaseSnapshotMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lightsail » CfnDatabaseSnapshotMixinProps |
Properties for CfnDatabaseSnapshotPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lightsail as lightsail } from '@aws-cdk/cfn-property-mixins';
const cfnDatabaseSnapshotMixinProps: lightsail.CfnDatabaseSnapshotMixinProps = {
relationalDatabaseName: 'relationalDatabaseName',
relationalDatabaseSnapshotName: 'relationalDatabaseSnapshotName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| relational | string | The name of the database on which to base your new snapshot. |
| relational | string | The name for your new database snapshot. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
relationalDatabaseName?
Type:
string
(optional)
The name of the database on which to base your new snapshot.
relationalDatabaseSnapshotName?
Type:
string
(optional)
The name for your new database snapshot.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript