Interface CfnSnapshot.SnapshotProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSnapshot.SnapshotProperty.Jsii$Proxy
Enclosing class:
CfnSnapshot

@Stability(Stable) public static interface CfnSnapshot.SnapshotProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.redshiftserverless.*;
 SnapshotProperty snapshotProperty = SnapshotProperty.builder()
         .adminUsername("adminUsername")
         .kmsKeyId("kmsKeyId")
         .namespaceArn("namespaceArn")
         .namespaceName("namespaceName")
         .ownerAccount("ownerAccount")
         .retentionPeriod(123)
         .snapshotArn("snapshotArn")
         .snapshotCreateTime("snapshotCreateTime")
         .snapshotName("snapshotName")
         .status("status")
         .build();
 

See Also: