interface CfnLegalHoldMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Backup.CfnLegalHoldMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbackup#CfnLegalHoldMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.backup.CfnLegalHoldMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_backup.CfnLegalHoldMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_backup » CfnLegalHoldMixinProps |
Properties for CfnLegalHoldPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-legalhold.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_backup as backup } from '@aws-cdk/cfn-property-mixins';
const cfnLegalHoldMixinProps: backup.CfnLegalHoldMixinProps = {
description: 'description',
recoveryPointSelection: {
dateRange: {
fromDate: 'fromDate',
toDate: 'toDate',
},
resourceIdentifiers: ['resourceIdentifiers'],
vaultNames: ['vaultNames'],
},
tags: [{
key: 'key',
value: 'value',
}],
title: 'title',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the legal hold. |
| recovery | IResolvable | Recovery | The criteria to assign a set of resources, such as resource types or backup vaults. |
| tags? | Tags[] | Optional tags to include. |
| title? | string | The title of the legal hold. |
description?
Type:
string
(optional)
The description of the legal hold.
recoveryPointSelection?
Type:
IResolvable | Recovery
(optional)
The criteria to assign a set of resources, such as resource types or backup vaults.
tags?
Type:
Tags[]
(optional)
Optional tags to include.
title?
Type:
string
(optional)
The title of the legal hold.

.NET
Go
Java
Python
TypeScript