Interface CfnBackupSelection.ConditionParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBackupSelection.ConditionParameterProperty.Jsii$Proxy
- Enclosing class:
CfnBackupSelection
@Stability(Stable)
public static interface CfnBackupSelection.ConditionParameterProperty
extends software.amazon.jsii.JsiiSerializable
Includes information about tags you define to assign tagged resources to a backup plan.
Include the prefix aws:ResourceTag
in your tags. For example, "aws:ResourceTag/TagKey1": "Value1"
.
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.*; ConditionParameterProperty conditionParameterProperty = ConditionParameterProperty.builder() .conditionKey("conditionKey") .conditionValue("conditionValue") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBackupSelection.ConditionParameterProperty
static final class
An implementation forCfnBackupSelection.ConditionParameterProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConditionKey
The key in a key-value pair.For example, in the tag
Department: Accounting
,Department
is the key.- See Also:
-
getConditionValue
The value in a key-value pair.For example, in the tag
Department: Accounting
,Accounting
is the value.- See Also:
-
builder
-