Interface GetAppResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetAppResponse.Builder,GetAppResponse>,SdkBuilder<GetAppResponse.Builder,GetAppResponse>,SdkPojo,SdkResponse.Builder,SmsResponse.Builder
- Enclosing class:
- GetAppResponse
public static interface GetAppResponse.Builder extends SmsResponse.Builder, SdkPojo, CopyableBuilder<GetAppResponse.Builder,GetAppResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GetAppResponse.BuilderappSummary(Consumer<AppSummary.Builder> appSummary)Information about the application.GetAppResponse.BuilderappSummary(AppSummary appSummary)Information about the application.GetAppResponse.BuilderserverGroups(Collection<ServerGroup> serverGroups)The server groups that belong to the application.GetAppResponse.BuilderserverGroups(Consumer<ServerGroup.Builder>... serverGroups)The server groups that belong to the application.GetAppResponse.BuilderserverGroups(ServerGroup... serverGroups)The server groups that belong to the application.GetAppResponse.Buildertags(Collection<Tag> tags)The tags associated with the application.GetAppResponse.Buildertags(Consumer<Tag.Builder>... tags)The tags associated with the application.GetAppResponse.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
GetAppResponse.Builder appSummary(AppSummary appSummary)
Information about the application.
- Parameters:
appSummary- Information about the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appSummary
default GetAppResponse.Builder appSummary(Consumer<AppSummary.Builder> appSummary)
Information about 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
GetAppResponse.Builder serverGroups(Collection<ServerGroup> serverGroups)
The server groups that belong to the application.
- Parameters:
serverGroups- The server groups that belong to the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serverGroups
GetAppResponse.Builder serverGroups(ServerGroup... serverGroups)
The server groups that belong to the application.
- Parameters:
serverGroups- The server groups that belong to the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serverGroups
GetAppResponse.Builder serverGroups(Consumer<ServerGroup.Builder>... serverGroups)
The server groups that belong to 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
GetAppResponse.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
GetAppResponse.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
GetAppResponse.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)
-
-