interface ReplicationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EFS.CfnFileSystem.ReplicationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsefs#CfnFileSystem_ReplicationConfigurationProperty |
Java | software.amazon.awscdk.services.efs.CfnFileSystem.ReplicationConfigurationProperty |
Python | aws_cdk.aws_efs.CfnFileSystem.ReplicationConfigurationProperty |
TypeScript | aws-cdk-lib » aws_efs » CfnFileSystem » 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-lib';
const replicationConfigurationProperty: efs.CfnFileSystem.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