interface RestoreTestingPlanReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Backup.RestoreTestingPlanReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbackup#RestoreTestingPlanReference |
Java | software.amazon.awscdk.services.backup.RestoreTestingPlanReference |
Python | aws_cdk.aws_backup.RestoreTestingPlanReference |
TypeScript | aws-cdk-lib » aws_backup » RestoreTestingPlanReference |
A reference to a RestoreTestingPlan 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 backup } from 'aws-cdk-lib';
const restoreTestingPlanReference: backup.RestoreTestingPlanReference = {
restoreTestingPlanArn: 'restoreTestingPlanArn',
restoreTestingPlanName: 'restoreTestingPlanName',
};
Properties
| Name | Type | Description |
|---|---|---|
| restore | string | The ARN of the RestoreTestingPlan resource. |
| restore | string | The RestoreTestingPlanName of the RestoreTestingPlan resource. |
restoreTestingPlanArn
Type:
string
The ARN of the RestoreTestingPlan resource.
restoreTestingPlanName
Type:
string
The RestoreTestingPlanName of the RestoreTestingPlan resource.

.NET
Go
Java
Python
TypeScript