interface BackupPolicyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EFS.Mixins.CfnFileSystemPropsMixin.BackupPolicyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsefs/mixins#CfnFileSystemPropsMixin_BackupPolicyProperty |
Java | software.amazon.awscdk.mixins.preview.services.efs.mixins.CfnFileSystemPropsMixin.BackupPolicyProperty |
Python | aws_cdk.mixins_preview.aws_efs.mixins.CfnFileSystemPropsMixin.BackupPolicyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_efs » mixins » CfnFileSystemPropsMixin » 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 { mixins as efs_mixins } from '@aws-cdk/mixins-preview/aws-efs';
const backupPolicyProperty: efs_mixins.CfnFileSystemPropsMixin.BackupPolicyProperty = {
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| status? | string | Set the backup policy status for the file system. |
status?
Type:
string
(optional)
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
Go
Java
Python
TypeScript