interface BackupPolicyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EFS.CfnFileSystem.BackupPolicyProperty |
Java | software.amazon.awscdk.services.efs.CfnFileSystem.BackupPolicyProperty |
Python | aws_cdk.aws_efs.CfnFileSystem.BackupPolicyProperty |
TypeScript | @aws-cdk/aws-efs » CfnFileSystem » BackupPolicyProperty |
The backup policy turns automatic backups for the file system on or off.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as efs from '@aws-cdk/aws-efs';
const backupPolicyProperty: efs.CfnFileSystem.BackupPolicyProperty = {
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| status | string | Set the backup policy status for the file system. |
status
Type:
string
Set the backup policy status for the file system.
ENABLED- Turns automatic backups on for the file system.DISABLED- Turns automatic backups off for the file system.

.NET
Java
Python
TypeScript