Interface Condition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Condition.Builder,Condition>,SdkBuilder<Condition.Builder,Condition>,SdkPojo
- Enclosing class:
- Condition
public static interface Condition.Builder extends SdkPojo, CopyableBuilder<Condition.Builder,Condition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Condition.BuilderconditionKey(String conditionKey)The key in a key-value pair.Condition.BuilderconditionType(String conditionType)An operation applied to a key-value pair used to assign resources to your backup plan.Condition.BuilderconditionType(ConditionType conditionType)An operation applied to a key-value pair used to assign resources to your backup plan.Condition.BuilderconditionValue(String conditionValue)The value in a key-value pair.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
conditionType
Condition.Builder conditionType(String conditionType)
An operation applied to a key-value pair used to assign resources to your backup plan. Condition only supports
StringEquals. For more flexible assignment options, includingStringLikeand the ability to exclude resources from your backup plan, useConditions(with an "s" on the end) for yourBackupSelection.- Parameters:
conditionType- An operation applied to a key-value pair used to assign resources to your backup plan. Condition only supportsStringEquals. For more flexible assignment options, includingStringLikeand the ability to exclude resources from your backup plan, useConditions(with an "s" on the end) for yourBackupSelection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConditionType,ConditionType
-
conditionType
Condition.Builder conditionType(ConditionType conditionType)
An operation applied to a key-value pair used to assign resources to your backup plan. Condition only supports
StringEquals. For more flexible assignment options, includingStringLikeand the ability to exclude resources from your backup plan, useConditions(with an "s" on the end) for yourBackupSelection.- Parameters:
conditionType- An operation applied to a key-value pair used to assign resources to your backup plan. Condition only supportsStringEquals. For more flexible assignment options, includingStringLikeand the ability to exclude resources from your backup plan, useConditions(with an "s" on the end) for yourBackupSelection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConditionType,ConditionType
-
conditionKey
Condition.Builder conditionKey(String conditionKey)
The key in a key-value pair. For example, in the tag
Department: Accounting,Departmentis the key.- Parameters:
conditionKey- The key in a key-value pair. For example, in the tagDepartment: Accounting,Departmentis the key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
conditionValue
Condition.Builder conditionValue(String conditionValue)
The value in a key-value pair. For example, in the tag
Department: Accounting,Accountingis the value.- Parameters:
conditionValue- The value in a key-value pair. For example, in the tagDepartment: Accounting,Accountingis the value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-