Interface BackupPlanIndexActionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BackupPlanIndexActionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-08-27T15:24:19.287Z")
@Stability(Stable)
public interface BackupPlanIndexActionProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.backup.*;
IndexActionResourceType indexActionResourceType;
BackupPlanIndexActionProps backupPlanIndexActionProps = BackupPlanIndexActionProps.builder()
.resourceTypes(List.of(indexActionResourceType))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBackupPlanIndexActionPropsstatic final classAn implementation forBackupPlanIndexActionProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Specifies the resource types to include in the index action.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResourceTypes
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.
-
builder
- Returns:
- a
BackupPlanIndexActionProps.BuilderofBackupPlanIndexActionProps
-