Interface CfnBackupSelectionMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBackupSelectionMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.267Z")
@Stability(Stable)
public interface CfnBackupSelectionMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnBackupSelectionPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.backup.*;
Object conditions;
CfnBackupSelectionMixinProps cfnBackupSelectionMixinProps = CfnBackupSelectionMixinProps.builder()
.backupPlanId("backupPlanId")
.backupSelection(BackupSelectionResourceTypeProperty.builder()
.conditions(conditions)
.iamRoleArn("iamRoleArn")
.listOfTags(List.of(ConditionResourceTypeProperty.builder()
.conditionKey("conditionKey")
.conditionType("conditionType")
.conditionValue("conditionValue")
.build()))
.notResources(List.of("notResources"))
.resources(List.of("resources"))
.selectionName("selectionName")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBackupSelectionMixinPropsstatic final classAn implementation forCfnBackupSelectionMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBackupPlanId
Uniquely identifies a backup plan.Returns union: either
StringorIBackupPlanRef- See Also:
-
getBackupSelection
Specifies the body of a request to assign a set of resources to a backup plan.It includes an array of resources, an optional array of patterns to exclude resources, an optional role to provide access to the AWS service the resource belongs to, and an optional array of tags used to identify a set of resources.
Returns union: either
IResolvableorCfnBackupSelectionPropsMixin.BackupSelectionResourceTypeProperty- See Also:
-
builder
-