interface SnapshotProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RedshiftServerless.Mixins.CfnSnapshotPropsMixin.SnapshotProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshiftserverless/mixins#CfnSnapshotPropsMixin_SnapshotProperty |
Java | software.amazon.awscdk.mixins.preview.services.redshiftserverless.mixins.CfnSnapshotPropsMixin.SnapshotProperty |
Python | aws_cdk.mixins_preview.aws_redshiftserverless.mixins.CfnSnapshotPropsMixin.SnapshotProperty |
TypeScript | @aws-cdk/mixins-preview » aws_redshiftserverless » mixins » CfnSnapshotPropsMixin » SnapshotProperty |
A snapshot object that contains databases.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as redshiftserverless_mixins } from '@aws-cdk/mixins-preview/aws-redshiftserverless';
const snapshotProperty: redshiftserverless_mixins.CfnSnapshotPropsMixin.SnapshotProperty = {
adminUsername: 'adminUsername',
kmsKeyId: 'kmsKeyId',
namespaceArn: 'namespaceArn',
namespaceName: 'namespaceName',
ownerAccount: 'ownerAccount',
retentionPeriod: 123,
snapshotArn: 'snapshotArn',
snapshotCreateTime: 'snapshotCreateTime',
snapshotName: 'snapshotName',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| admin | string | The username of the database within a snapshot. |
| kms | string | The unique identifier of the KMS key used to encrypt the snapshot. |
| namespace | string | The Amazon Resource Name (ARN) of the namespace the snapshot was created from. |
| namespace | string | The name of the namepsace. |
| owner | string | The owner AWS ; |
| retention | number | The retention period of the snapshot created by the scheduled action. |
| snapshot | string | The Amazon Resource Name (ARN) of the snapshot. |
| snapshot | string | The timestamp of when the snapshot was created. |
| snapshot | string | The name of the snapshot. |
| status? | string | The status of the snapshot. |
adminUsername?
Type:
string
(optional)
The username of the database within a snapshot.
kmsKeyId?
Type:
string
(optional)
The unique identifier of the KMS key used to encrypt the snapshot.
namespaceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the namespace the snapshot was created from.
namespaceName?
Type:
string
(optional)
The name of the namepsace.
ownerAccount?
Type:
string
(optional)
The owner AWS ;
account of the snapshot.
retentionPeriod?
Type:
number
(optional)
The retention period of the snapshot created by the scheduled action.
snapshotArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the snapshot.
snapshotCreateTime?
Type:
string
(optional)
The timestamp of when the snapshot was created.
snapshotName?
Type:
string
(optional)
The name of the snapshot.
status?
Type:
string
(optional)
The status of the snapshot.

.NET
Go
Java
Python
TypeScript