Interface EnvironmentPropertyUpdates.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EnvironmentPropertyUpdates.Builder,EnvironmentPropertyUpdates>,SdkBuilder<EnvironmentPropertyUpdates.Builder,EnvironmentPropertyUpdates>,SdkPojo
- Enclosing class:
- EnvironmentPropertyUpdates
public static interface EnvironmentPropertyUpdates.Builder extends SdkPojo, CopyableBuilder<EnvironmentPropertyUpdates.Builder,EnvironmentPropertyUpdates>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnvironmentPropertyUpdates.BuilderpropertyGroups(Collection<PropertyGroup> propertyGroups)Describes updates to the execution property groups.EnvironmentPropertyUpdates.BuilderpropertyGroups(Consumer<PropertyGroup.Builder>... propertyGroups)Describes updates to the execution property groups.EnvironmentPropertyUpdates.BuilderpropertyGroups(PropertyGroup... propertyGroups)Describes updates to 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
EnvironmentPropertyUpdates.Builder propertyGroups(Collection<PropertyGroup> propertyGroups)
Describes updates to the execution property groups.
- Parameters:
propertyGroups- Describes updates to the execution property groups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyGroups
EnvironmentPropertyUpdates.Builder propertyGroups(PropertyGroup... propertyGroups)
Describes updates to the execution property groups.
- Parameters:
propertyGroups- Describes updates to the execution property groups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
propertyGroups
EnvironmentPropertyUpdates.Builder propertyGroups(Consumer<PropertyGroup.Builder>... propertyGroups)
Describes updates to 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)
-
-