Interface ListStorageConfigurationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListStorageConfigurationsResponse.Builder,ListStorageConfigurationsResponse>,IvsRealTimeResponse.Builder,SdkBuilder<ListStorageConfigurationsResponse.Builder,ListStorageConfigurationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListStorageConfigurationsResponse
public static interface ListStorageConfigurationsResponse.Builder extends IvsRealTimeResponse.Builder, SdkPojo, CopyableBuilder<ListStorageConfigurationsResponse.Builder,ListStorageConfigurationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListStorageConfigurationsResponse.BuildernextToken(String nextToken)If there are more storage configurations thanmaxResults, usenextTokenin the request to get the next set.ListStorageConfigurationsResponse.BuilderstorageConfigurations(Collection<StorageConfigurationSummary> storageConfigurations)List of the matching storage configurations.ListStorageConfigurationsResponse.BuilderstorageConfigurations(Consumer<StorageConfigurationSummary.Builder>... storageConfigurations)List of the matching storage configurations.ListStorageConfigurationsResponse.BuilderstorageConfigurations(StorageConfigurationSummary... storageConfigurations)List of the matching storage configurations.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ivsrealtime.model.IvsRealTimeResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
nextToken
ListStorageConfigurationsResponse.Builder nextToken(String nextToken)
If there are more storage configurations than
maxResults, usenextTokenin the request to get the next set.- Parameters:
nextToken- If there are more storage configurations thanmaxResults, usenextTokenin the request to get the next set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageConfigurations
ListStorageConfigurationsResponse.Builder storageConfigurations(Collection<StorageConfigurationSummary> storageConfigurations)
List of the matching storage configurations.
- Parameters:
storageConfigurations- List of the matching storage configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageConfigurations
ListStorageConfigurationsResponse.Builder storageConfigurations(StorageConfigurationSummary... storageConfigurations)
List of the matching storage configurations.
- Parameters:
storageConfigurations- List of the matching storage configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageConfigurations
ListStorageConfigurationsResponse.Builder storageConfigurations(Consumer<StorageConfigurationSummary.Builder>... storageConfigurations)
List of the matching storage configurations.
This is a convenience method that creates an instance of theStorageConfigurationSummary.Builderavoiding the need to create one manually viaStorageConfigurationSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#storageConfigurations(List.) - Parameters:
storageConfigurations- a consumer that will call methods onStorageConfigurationSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#storageConfigurations(java.util.Collection)
-
-