Interface StepAttributeCapability.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StepAttributeCapability.Builder,StepAttributeCapability>,SdkBuilder<StepAttributeCapability.Builder,StepAttributeCapability>,SdkPojo
- Enclosing class:
- StepAttributeCapability
public static interface StepAttributeCapability.Builder extends SdkPojo, CopyableBuilder<StepAttributeCapability.Builder,StepAttributeCapability>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StepAttributeCapability.BuilderallOf(String... allOf)Requires all of the step attribute values.StepAttributeCapability.BuilderallOf(Collection<String> allOf)Requires all of the step attribute values.StepAttributeCapability.BuilderanyOf(String... anyOf)Requires any of the step attributes in a given list.StepAttributeCapability.BuilderanyOf(Collection<String> anyOf)Requires any of the step attributes in a given list.StepAttributeCapability.Buildername(String name)The name of the step attribute.-
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
-
allOf
StepAttributeCapability.Builder allOf(Collection<String> allOf)
Requires all of the step attribute values.
- Parameters:
allOf- Requires all of the step attribute values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allOf
StepAttributeCapability.Builder allOf(String... allOf)
Requires all of the step attribute values.
- Parameters:
allOf- Requires all of the step attribute values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
anyOf
StepAttributeCapability.Builder anyOf(Collection<String> anyOf)
Requires any of the step attributes in a given list.
- Parameters:
anyOf- Requires any of the step attributes in a given list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
anyOf
StepAttributeCapability.Builder anyOf(String... anyOf)
Requires any of the step attributes in a given list.
- Parameters:
anyOf- Requires any of the step attributes in a given list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
StepAttributeCapability.Builder name(String name)
The name of the step attribute.
- Parameters:
name- The name of the step attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-