Interface ListConfigurationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListConfigurationsResponse.Builder,ListConfigurationsResponse>,SdkBuilder<ListConfigurationsResponse.Builder,ListConfigurationsResponse>,SdkPojo,SdkResponse.Builder,SsmQuickSetupResponse.Builder
- Enclosing class:
- ListConfigurationsResponse
public static interface ListConfigurationsResponse.Builder extends SsmQuickSetupResponse.Builder, SdkPojo, CopyableBuilder<ListConfigurationsResponse.Builder,ListConfigurationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListConfigurationsResponse.BuilderconfigurationsList(Collection<ConfigurationSummary> configurationsList)An array of configurations.ListConfigurationsResponse.BuilderconfigurationsList(Consumer<ConfigurationSummary.Builder>... configurationsList)An array of configurations.ListConfigurationsResponse.BuilderconfigurationsList(ConfigurationSummary... configurationsList)An array of configurations.ListConfigurationsResponse.BuildernextToken(String nextToken)The token to use when requesting the next set of items.-
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.ssmquicksetup.model.SsmQuickSetupResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
configurationsList
ListConfigurationsResponse.Builder configurationsList(Collection<ConfigurationSummary> configurationsList)
An array of configurations.
- Parameters:
configurationsList- An array of configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationsList
ListConfigurationsResponse.Builder configurationsList(ConfigurationSummary... configurationsList)
An array of configurations.
- Parameters:
configurationsList- An array of configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationsList
ListConfigurationsResponse.Builder configurationsList(Consumer<ConfigurationSummary.Builder>... configurationsList)
An array of configurations.
This is a convenience method that creates an instance of theConfigurationSummary.Builderavoiding the need to create one manually viaConfigurationSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#configurationsList(List.) - Parameters:
configurationsList- a consumer that will call methods onConfigurationSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#configurationsList(java.util.Collection)
-
nextToken
ListConfigurationsResponse.Builder nextToken(String nextToken)
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
- Parameters:
nextToken- The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-