interface BackupPlanIndexActionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Backup.BackupPlanIndexActionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbackup#BackupPlanIndexActionProps |
Java | software.amazon.awscdk.services.backup.BackupPlanIndexActionProps |
Python | aws_cdk.aws_backup.BackupPlanIndexActionProps |
TypeScript (source) | aws-cdk-lib » aws_backup » BackupPlanIndexActionProps |
Properties for a BackupPlanIndexAction.
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';
declare const indexActionResourceType: backup.IndexActionResourceType;
const backupPlanIndexActionProps: backup.BackupPlanIndexActionProps = {
resourceTypes: [indexActionResourceType],
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | Index[] | Specifies the resource types to include in the index action. |
resourceTypes
Type:
Index[]
Specifies the resource types to include in the index action.
A backup index is only created when this is set, so at least one resource type must be provided.

.NET
Go
Java
Python
TypeScript (