Interface EnvironmentPropertyDescriptions.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<EnvironmentPropertyDescriptions.Builder,
,EnvironmentPropertyDescriptions> SdkBuilder<EnvironmentPropertyDescriptions.Builder,
,EnvironmentPropertyDescriptions> SdkPojo
- Enclosing class:
EnvironmentPropertyDescriptions
public static interface EnvironmentPropertyDescriptions.Builder
extends SdkPojo, CopyableBuilder<EnvironmentPropertyDescriptions.Builder,EnvironmentPropertyDescriptions>
-
Method Summary
Modifier and TypeMethodDescriptionpropertyGroupDescriptions
(Collection<PropertyGroup> propertyGroupDescriptions) Describes the execution property groups.propertyGroupDescriptions
(Consumer<PropertyGroup.Builder>... propertyGroupDescriptions) Describes the execution property groups.propertyGroupDescriptions
(PropertyGroup... propertyGroupDescriptions) Describes the execution property groups.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 Details
-
propertyGroupDescriptions
EnvironmentPropertyDescriptions.Builder propertyGroupDescriptions(Collection<PropertyGroup> propertyGroupDescriptions) Describes the execution property groups.
- Parameters:
propertyGroupDescriptions
- Describes the execution property groups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyGroupDescriptions
EnvironmentPropertyDescriptions.Builder propertyGroupDescriptions(PropertyGroup... propertyGroupDescriptions) Describes the execution property groups.
- Parameters:
propertyGroupDescriptions
- Describes the execution property groups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyGroupDescriptions
EnvironmentPropertyDescriptions.Builder propertyGroupDescriptions(Consumer<PropertyGroup.Builder>... propertyGroupDescriptions) Describes the execution property groups.
This is a convenience method that creates an instance of thePropertyGroup.Builder
avoiding the need to create one manually viaPropertyGroup.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed topropertyGroupDescriptions(List<PropertyGroup>)
.- Parameters:
propertyGroupDescriptions
- a consumer that will call methods onPropertyGroup.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-