BackupPlanIndexActionProps
- class aws_cdk.aws_backup.BackupPlanIndexActionProps(*, resource_types)
Bases:
objectProperties for a BackupPlanIndexAction.
- Parameters:
resource_types (
Sequence[IndexActionResourceType]) – 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.- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_backup as backup # index_action_resource_type: backup.IndexActionResourceType backup_plan_index_action_props = backup.BackupPlanIndexActionProps( resource_types=[index_action_resource_type] )
Attributes
- resource_types
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.