Interface CreateAppResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateAppResponse.Builder,CreateAppResponse>,SdkBuilder<CreateAppResponse.Builder,CreateAppResponse>,SdkPojo,SdkResponse.Builder,SmsResponse.Builder
- Enclosing class:
- CreateAppResponse
public static interface CreateAppResponse.Builder extends SmsResponse.Builder, SdkPojo, CopyableBuilder<CreateAppResponse.Builder,CreateAppResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CreateAppResponse.BuilderappSummary(Consumer<AppSummary.Builder> appSummary)A summary description of the application.CreateAppResponse.BuilderappSummary(AppSummary appSummary)A summary description of the application.CreateAppResponse.BuilderserverGroups(Collection<ServerGroup> serverGroups)The server groups included in the application.CreateAppResponse.BuilderserverGroups(Consumer<ServerGroup.Builder>... serverGroups)The server groups included in the application.CreateAppResponse.BuilderserverGroups(ServerGroup... serverGroups)The server groups included in the application.CreateAppResponse.Buildertags(Collection<Tag> tags)The tags associated with the application.CreateAppResponse.Buildertags(Consumer<Tag.Builder>... tags)The tags associated with the application.CreateAppResponse.Buildertags(Tag... tags)The tags associated with the application.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.sms.model.SmsResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
appSummary
CreateAppResponse.Builder appSummary(AppSummary appSummary)
A summary description of the application.
- Parameters:
appSummary- A summary description of the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appSummary
default CreateAppResponse.Builder appSummary(Consumer<AppSummary.Builder> appSummary)
A summary description of the application.
This is a convenience method that creates an instance of theAppSummary.Builderavoiding the need to create one manually viaAppSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toappSummary(AppSummary).- Parameters:
appSummary- a consumer that will call methods onAppSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
appSummary(AppSummary)
-
serverGroups
CreateAppResponse.Builder serverGroups(Collection<ServerGroup> serverGroups)
The server groups included in the application.
- Parameters:
serverGroups- The server groups included in the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serverGroups
CreateAppResponse.Builder serverGroups(ServerGroup... serverGroups)
The server groups included in the application.
- Parameters:
serverGroups- The server groups included in the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serverGroups
CreateAppResponse.Builder serverGroups(Consumer<ServerGroup.Builder>... serverGroups)
The server groups included in the application.
This is a convenience method that creates an instance of theServerGroup.Builderavoiding the need to create one manually viaServerGroup.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#serverGroups(List.) - Parameters:
serverGroups- a consumer that will call methods onServerGroup.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#serverGroups(java.util.Collection)
-
tags
CreateAppResponse.Builder tags(Collection<Tag> tags)
The tags associated with the application.
- Parameters:
tags- The tags associated with the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateAppResponse.Builder tags(Tag... tags)
The tags associated with the application.
- Parameters:
tags- The tags associated with the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateAppResponse.Builder tags(Consumer<Tag.Builder>... tags)
The tags associated with the application.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
-