interface CfnDatabaseSnapshotMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lightsail.Mixins.CfnDatabaseSnapshotMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslightsail/mixins#CfnDatabaseSnapshotMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.lightsail.mixins.CfnDatabaseSnapshotMixinProps |
Python | aws_cdk.mixins_preview.aws_lightsail.mixins.CfnDatabaseSnapshotMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_lightsail » mixins » 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 { mixins as lightsail_mixins } from '@aws-cdk/mixins-preview/aws-lightsail';
const cfnDatabaseSnapshotMixinProps: lightsail_mixins.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