public static interface CfnBackupSelection.ConditionResourceTypeProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnBackupSelection.ConditionResourceTypeProperty.Builder
A builder for
CfnBackupSelection.ConditionResourceTypeProperty |
static class |
CfnBackupSelection.ConditionResourceTypeProperty.Jsii$Proxy
An implementation for
CfnBackupSelection.ConditionResourceTypeProperty |
Modifier and Type | Method and Description |
---|---|
static CfnBackupSelection.ConditionResourceTypeProperty.Builder |
builder() |
java.lang.String |
getConditionKey()
The key in a key-value pair.
|
java.lang.String |
getConditionType()
An operation, such as `STRINGEQUALS` , that is applied to a key-value pair used to filter resources in a selection.
|
java.lang.String |
getConditionValue()
The value in a key-value pair.
|
java.lang.String getConditionKey()
For example, in "Department": "accounting"
, "Department"
is the key.
java.lang.String getConditionType()
java.lang.String getConditionValue()
For example, in "Department": "accounting"
, "accounting"
is the value.
static CfnBackupSelection.ConditionResourceTypeProperty.Builder builder()