Interface CfnSnapshotMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSnapshotMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:59.552Z")
@Stability(Stable)
public interface CfnSnapshotMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSnapshotPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.fsx.*;
CfnSnapshotMixinProps cfnSnapshotMixinProps = CfnSnapshotMixinProps.builder()
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.volumeId("volumeId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSnapshotMixinPropsstatic final classAn implementation forCfnSnapshotMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the snapshot.- See Also:
-
getTags
A list ofTagvalues, with a maximum of 50 elements.- See Also:
-
getVolumeId
The ID of the volume that the snapshot is of.- See Also:
-
builder
- Returns:
- a
CfnSnapshotMixinProps.BuilderofCfnSnapshotMixinProps
-