interface InstanceSnapshotReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Lightsail.InstanceSnapshotReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslightsail#InstanceSnapshotReference |
Java | software.amazon.awscdk.interfaces.lightsail.InstanceSnapshotReference |
Python | aws_cdk.interfaces.aws_lightsail.InstanceSnapshotReference |
TypeScript | aws-cdk-lib » interfaces » aws_lightsail » InstanceSnapshotReference |
A reference to a InstanceSnapshot resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lightsail as interfaces_lightsail } from 'aws-cdk-lib/interfaces';
const instanceSnapshotReference: interfaces_lightsail.InstanceSnapshotReference = {
instanceSnapshotArn: 'instanceSnapshotArn',
instanceSnapshotName: 'instanceSnapshotName',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The ARN of the InstanceSnapshot resource. |
| instance | string | The InstanceSnapshotName of the InstanceSnapshot resource. |
instanceSnapshotArn
Type:
string
The ARN of the InstanceSnapshot resource.
instanceSnapshotName
Type:
string
The InstanceSnapshotName of the InstanceSnapshot resource.

.NET
Go
Java
Python
TypeScript