interface ReplicationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EFS.Mixins.CfnFileSystemPropsMixin.ReplicationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsefs/mixins#CfnFileSystemPropsMixin_ReplicationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.efs.mixins.CfnFileSystemPropsMixin.ReplicationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_efs.mixins.CfnFileSystemPropsMixin.ReplicationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_efs » mixins » 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 { mixins as efs_mixins } from '@aws-cdk/mixins-preview/aws-efs';
const replicationConfigurationProperty: efs_mixins.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