Interface EBSMultiVolumeSnapshotsCompletionStatus.Snapshot
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EBSMultiVolumeSnapshotsCompletionStatus.Snapshot.Jsii$Proxy
- Enclosing class:
EBSMultiVolumeSnapshotsCompletionStatus
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.ec2.events.*;
Snapshot snapshot = Snapshot.builder()
.snapshotId(List.of("snapshotId"))
.source(List.of("source"))
.status(List.of("status"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEBSMultiVolumeSnapshotsCompletionStatus.Snapshotstatic final classAn implementation forEBSMultiVolumeSnapshotsCompletionStatus.Snapshot -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) snapshot_id property.(experimental) source property.(experimental) status property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSnapshotId
(experimental) snapshot_id property.Specify an array of string values to match this event if the actual value of snapshot_id is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getSource
(experimental) source property.Specify an array of string values to match this event if the actual value of source is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getStatus
(experimental) status property.Specify an array of string values to match this event if the actual value of status is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-