interface LegalHoldReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Backup.LegalHoldReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbackup#LegalHoldReference |
Java | software.amazon.awscdk.interfaces.backup.LegalHoldReference |
Python | aws_cdk.interfaces.aws_backup.LegalHoldReference |
TypeScript | aws-cdk-lib » interfaces » aws_backup » LegalHoldReference |
A reference to a LegalHold resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_backup as interfaces_backup } from 'aws-cdk-lib/interfaces';
const legalHoldReference: interfaces_backup.LegalHoldReference = {
legalHoldArn: 'legalHoldArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| legal | string | The Arn of the LegalHold resource. |
legalHoldArn
Type:
string
The Arn of the LegalHold resource.

.NET
Go
Java
Python
TypeScript