InstanceSnapshotReference
- class aws_cdk.interfaces.aws_lightsail.InstanceSnapshotReference(*, instance_snapshot_arn, instance_snapshot_name)
Bases:
objectA reference to a InstanceSnapshot resource.
- Parameters:
instance_snapshot_arn (
str) – The ARN of the InstanceSnapshot resource.instance_snapshot_name (
str) – The InstanceSnapshotName of the InstanceSnapshot resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_lightsail as interfaces_aws_lightsail instance_snapshot_reference = interfaces_aws_lightsail.InstanceSnapshotReference( instance_snapshot_arn="instanceSnapshotArn", instance_snapshot_name="instanceSnapshotName" )
Attributes
- instance_snapshot_arn
The ARN of the InstanceSnapshot resource.
- instance_snapshot_name
The InstanceSnapshotName of the InstanceSnapshot resource.