Interface CfnFileSystemPropsMixin.ReplicationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFileSystemPropsMixin.ReplicationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFileSystemPropsMixin
@Stability(Stable)
public static interface CfnFileSystemPropsMixin.ReplicationConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Describes the replication configuration for a specific file system.
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.efs.*;
ReplicationConfigurationProperty replicationConfigurationProperty = ReplicationConfigurationProperty.builder()
.destinations(List.of(ReplicationDestinationProperty.builder()
.availabilityZoneName("availabilityZoneName")
.fileSystemId("fileSystemId")
.kmsKeyId("kmsKeyId")
.region("region")
.roleArn("roleArn")
.status("status")
.statusMessage("statusMessage")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFileSystemPropsMixin.ReplicationConfigurationPropertystatic final classAn implementation forCfnFileSystemPropsMixin.ReplicationConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinations
An array of destination objects.Only one destination object is supported.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnFileSystemPropsMixin.ReplicationDestinationProperty>- See Also:
-
builder
@Stability(Stable) static CfnFileSystemPropsMixin.ReplicationConfigurationProperty.Builder builder()
-