interface ReplicationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EFS.CfnFileSystemPropsMixin.ReplicationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsefs#CfnFileSystemPropsMixin_ReplicationConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.efs.CfnFileSystemPropsMixin.ReplicationConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_efs.CfnFileSystemPropsMixin.ReplicationConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_efs » CfnFileSystemPropsMixin » ReplicationConfigurationProperty |
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 { aws_efs as efs } from '@aws-cdk/cfn-property-mixins';
const replicationConfigurationProperty: efs.CfnFileSystemPropsMixin.ReplicationConfigurationProperty = {
destinations: [{
availabilityZoneName: 'availabilityZoneName',
fileSystemId: 'fileSystemId',
kmsKeyId: 'kmsKeyId',
region: 'region',
roleArn: 'roleArn',
status: 'status',
statusMessage: 'statusMessage',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| destinations? | IResolvable | (IResolvable | Replication)[] | An array of destination objects. |
destinations?
Type:
IResolvable | (IResolvable | Replication)[]
(optional)
An array of destination objects.
Only one destination object is supported.

.NET
Go
Java
Python
TypeScript