Interface CfnBackupSelection.ConditionResourceTypeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBackupSelection.ConditionResourceTypeProperty.Jsii$Proxy
- Enclosing class:
CfnBackupSelection
@Stability(Stable)
public static interface CfnBackupSelection.ConditionResourceTypeProperty
extends software.amazon.jsii.JsiiSerializable
Specifies an object that contains an array of triplets made up of a condition type (such as
STRINGEQUALS
), a key, and a value.
Conditions are used to filter resources in a selection that is assigned to a backup plan.
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.*; ConditionResourceTypeProperty conditionResourceTypeProperty = ConditionResourceTypeProperty.builder() .conditionKey("conditionKey") .conditionType("conditionType") .conditionValue("conditionValue") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBackupSelection.ConditionResourceTypeProperty
static final class
An implementation forCfnBackupSelection.ConditionResourceTypeProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The key in a key-value pair.An operation, such asSTRINGEQUALS
, that is applied to a key-value pair used to filter resources in a selection.The value in a key-value pair.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConditionKey
The key in a key-value pair.For example, in
"Department": "accounting"
,"Department"
is the key.- See Also:
-
getConditionType
An operation, such asSTRINGEQUALS
, that is applied to a key-value pair used to filter resources in a selection.- See Also:
-
getConditionValue
The value in a key-value pair.For example, in
"Department": "accounting"
,"accounting"
is the value.- See Also:
-
builder
-