Interface ApplicationConfig.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ApplicationConfig.Builder,
,ApplicationConfig> SdkBuilder<ApplicationConfig.Builder,
,ApplicationConfig> SdkPojo
- Enclosing class:
ApplicationConfig
@Mutable
@NotThreadSafe
public static interface ApplicationConfig.Builder
extends SdkPojo, CopyableBuilder<ApplicationConfig.Builder,ApplicationConfig>
-
Method Summary
Modifier and TypeMethodDescriptionattributes
(Collection<ApplicationAttribute> attributes) Contains the attribute name and a list of values for that attribute.attributes
(Consumer<ApplicationAttribute.Builder>... attributes) Contains the attribute name and a list of values for that attribute.attributes
(ApplicationAttribute... attributes) Contains the attribute name and a list of values for that 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, sdkFieldNameToField, sdkFields
-
Method Details
-
attributes
Contains the attribute name and a list of values for that attribute.
- Parameters:
attributes
- Contains the attribute name and a list of values for that attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
Contains the attribute name and a list of values for that attribute.
- Parameters:
attributes
- Contains the attribute name and a list of values for that attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
Contains the attribute name and a list of values for that attribute.
This is a convenience method that creates an instance of theApplicationAttribute.Builder
avoiding the need to create one manually viaApplicationAttribute.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toattributes(List<ApplicationAttribute>)
.- Parameters:
attributes
- a consumer that will call methods onApplicationAttribute.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-