Interface DescribeLaunchConfigurationsResponse.Builder
-
- All Superinterfaces:
AutoScalingResponse.Builder
,AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeLaunchConfigurationsResponse.Builder,DescribeLaunchConfigurationsResponse>
,SdkBuilder<DescribeLaunchConfigurationsResponse.Builder,DescribeLaunchConfigurationsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeLaunchConfigurationsResponse
public static interface DescribeLaunchConfigurationsResponse.Builder extends AutoScalingResponse.Builder, SdkPojo, CopyableBuilder<DescribeLaunchConfigurationsResponse.Builder,DescribeLaunchConfigurationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeLaunchConfigurationsResponse.Builder
launchConfigurations(Collection<LaunchConfiguration> launchConfigurations)
The launch configurations.DescribeLaunchConfigurationsResponse.Builder
launchConfigurations(Consumer<LaunchConfiguration.Builder>... launchConfigurations)
The launch configurations.DescribeLaunchConfigurationsResponse.Builder
launchConfigurations(LaunchConfiguration... launchConfigurations)
The launch configurations.DescribeLaunchConfigurationsResponse.Builder
nextToken(String nextToken)
A string that indicates that the response contains more items than can be returned in a single response.-
Methods inherited from interface software.amazon.awssdk.services.autoscaling.model.AutoScalingResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
launchConfigurations
DescribeLaunchConfigurationsResponse.Builder launchConfigurations(Collection<LaunchConfiguration> launchConfigurations)
The launch configurations.
- Parameters:
launchConfigurations
- The launch configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
launchConfigurations
DescribeLaunchConfigurationsResponse.Builder launchConfigurations(LaunchConfiguration... launchConfigurations)
The launch configurations.
- Parameters:
launchConfigurations
- The launch configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
launchConfigurations
DescribeLaunchConfigurationsResponse.Builder launchConfigurations(Consumer<LaunchConfiguration.Builder>... launchConfigurations)
The launch configurations.
This is a convenience method that creates an instance of theLaunchConfiguration.Builder
avoiding the need to create one manually viaLaunchConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#launchConfigurations(List
.) - Parameters:
launchConfigurations
- a consumer that will call methods onLaunchConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#launchConfigurations(java.util.Collection
)
-
nextToken
DescribeLaunchConfigurationsResponse.Builder nextToken(String nextToken)
A string that indicates that the response contains more items than can be returned in a single response. To receive additional items, specify this string for the
NextToken
value when requesting the next set of items. This value is null when there are no more items to return.- Parameters:
nextToken
- A string that indicates that the response contains more items than can be returned in a single response. To receive additional items, specify this string for theNextToken
value when requesting the next set of items. This value is null when there are no more items to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-