@Stability(value=Stable)
public static interface CfnBackupSelection.ConditionResourceTypeProperty
extends software.amazon.jsii.JsiiSerializable
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() |
String |
getConditionKey()
The key in a key-value pair.
|
String |
getConditionType()
An operation, such as `STRINGEQUALS` , that is applied to a key-value pair used to filter resources in a selection.
|
String |
getConditionValue()
The value in a key-value pair.
|
@Stability(value=Stable) @NotNull String getConditionKey()
For example, in "Department": "accounting" , "Department" is the key.
@Stability(value=Stable) @NotNull String getConditionType()
@Stability(value=Stable) @NotNull String getConditionValue()
For example, in "Department": "accounting" , "accounting" is the value.
@Stability(value=Stable) static CfnBackupSelection.ConditionResourceTypeProperty.Builder builder()
Copyright © 2022. All rights reserved.