Interface EnvironmentProperties.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EnvironmentProperties.Builder,EnvironmentProperties>,SdkBuilder<EnvironmentProperties.Builder,EnvironmentProperties>,SdkPojo
- Enclosing class:
- EnvironmentProperties
public static interface EnvironmentProperties.Builder extends SdkPojo, CopyableBuilder<EnvironmentProperties.Builder,EnvironmentProperties>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnvironmentProperties.BuilderpropertyGroups(Collection<PropertyGroup> propertyGroups)Describes the execution property groups.EnvironmentProperties.BuilderpropertyGroups(Consumer<PropertyGroup.Builder>... propertyGroups)Describes the execution property groups.EnvironmentProperties.BuilderpropertyGroups(PropertyGroup... propertyGroups)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 Detail
-
propertyGroups
EnvironmentProperties.Builder propertyGroups(Collection<PropertyGroup> propertyGroups)
Describes the execution property groups.
- Parameters:
propertyGroups- Describes the execution property groups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyGroups
EnvironmentProperties.Builder propertyGroups(PropertyGroup... propertyGroups)
Describes the execution property groups.
- Parameters:
propertyGroups- Describes the execution property groups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyGroups
EnvironmentProperties.Builder propertyGroups(Consumer<PropertyGroup.Builder>... propertyGroups)
Describes the execution property groups.
This is a convenience method that creates an instance of thePropertyGroup.Builderavoiding the need to create one manually viaPropertyGroup.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#propertyGroups(List.) - Parameters:
propertyGroups- 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:
#propertyGroups(java.util.Collection)
-
-