interface CfnInstanceSnapshotMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lightsail.Mixins.CfnInstanceSnapshotMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslightsail/mixins#CfnInstanceSnapshotMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.lightsail.mixins.CfnInstanceSnapshotMixinProps |
Python | aws_cdk.mixins_preview.aws_lightsail.mixins.CfnInstanceSnapshotMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_lightsail » mixins » CfnInstanceSnapshotMixinProps |
Properties for CfnInstanceSnapshotPropsMixin.
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 cfnInstanceSnapshotMixinProps: lightsail_mixins.CfnInstanceSnapshotMixinProps = {
instanceName: 'instanceName',
instanceSnapshotName: 'instanceSnapshotName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The name the user gave the instance ( Amazon_Linux_2023-1 ). |
| instance | string | The name of the snapshot. |
| tags? | Cfn[] | The tag keys and optional values for the resource. |
instanceName?
Type:
string
(optional)
The name the user gave the instance ( Amazon_Linux_2023-1 ).
instanceSnapshotName?
Type:
string
(optional)
The name of the snapshot.
tags?
Type:
Cfn[]
(optional)
The tag keys and optional values for the resource.
For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide .

.NET
Go
Java
Python
TypeScript