interface BackupPolicyProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EFS.CfnFileSystem.BackupPolicyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsefs#CfnFileSystem_BackupPolicyProperty |
Java | software.amazon.awscdk.services.efs.CfnFileSystem.BackupPolicyProperty |
Python | aws_cdk.aws_efs.CfnFileSystem.BackupPolicyProperty |
TypeScript | aws-cdk-lib » 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 { aws_efs as efs } from 'aws-cdk-lib';
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.