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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnvironmentPropertyDescriptions.BuilderpropertyGroupDescriptions(Collection<PropertyGroup> propertyGroupDescriptions)Describes the execution property groups.EnvironmentPropertyDescriptions.BuilderpropertyGroupDescriptions(Consumer<PropertyGroup.Builder>... propertyGroupDescriptions)Describes the execution property groups.EnvironmentPropertyDescriptions.BuilderpropertyGroupDescriptions(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 Detail
-
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.Builderavoiding the need to create one manually viaPropertyGroup.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#propertyGroupDescriptions(List.) - 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:
#propertyGroupDescriptions(java.util.Collection)
-
-