Interface ListStorageLensConfigurationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListStorageLensConfigurationsResponse.Builder,ListStorageLensConfigurationsResponse>,S3ControlResponse.Builder,SdkBuilder<ListStorageLensConfigurationsResponse.Builder,ListStorageLensConfigurationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListStorageLensConfigurationsResponse
public static interface ListStorageLensConfigurationsResponse.Builder extends S3ControlResponse.Builder, SdkPojo, CopyableBuilder<ListStorageLensConfigurationsResponse.Builder,ListStorageLensConfigurationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListStorageLensConfigurationsResponse.BuildernextToken(String nextToken)If the request produced more than the maximum number of S3 Storage Lens configuration results, you can pass this value into a subsequent request to retrieve the next page of results.ListStorageLensConfigurationsResponse.BuilderstorageLensConfigurationList(Collection<ListStorageLensConfigurationEntry> storageLensConfigurationList)A list of S3 Storage Lens configurations.ListStorageLensConfigurationsResponse.BuilderstorageLensConfigurationList(Consumer<ListStorageLensConfigurationEntry.Builder>... storageLensConfigurationList)A list of S3 Storage Lens configurations.ListStorageLensConfigurationsResponse.BuilderstorageLensConfigurationList(ListStorageLensConfigurationEntry... storageLensConfigurationList)A list of S3 Storage Lens configurations.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.s3control.model.S3ControlResponse.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
ListStorageLensConfigurationsResponse.Builder nextToken(String nextToken)
If the request produced more than the maximum number of S3 Storage Lens configuration results, you can pass this value into a subsequent request to retrieve the next page of results.
- Parameters:
nextToken- If the request produced more than the maximum number of S3 Storage Lens configuration results, you can pass this value into a subsequent request to retrieve the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageLensConfigurationList
ListStorageLensConfigurationsResponse.Builder storageLensConfigurationList(Collection<ListStorageLensConfigurationEntry> storageLensConfigurationList)
A list of S3 Storage Lens configurations.
- Parameters:
storageLensConfigurationList- A list of S3 Storage Lens configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageLensConfigurationList
ListStorageLensConfigurationsResponse.Builder storageLensConfigurationList(ListStorageLensConfigurationEntry... storageLensConfigurationList)
A list of S3 Storage Lens configurations.
- Parameters:
storageLensConfigurationList- A list of S3 Storage Lens configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageLensConfigurationList
ListStorageLensConfigurationsResponse.Builder storageLensConfigurationList(Consumer<ListStorageLensConfigurationEntry.Builder>... storageLensConfigurationList)
A list of S3 Storage Lens configurations.
This is a convenience method that creates an instance of theListStorageLensConfigurationEntry.Builderavoiding the need to create one manually viaListStorageLensConfigurationEntry.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#storageLensConfigurationList(List.) - Parameters:
storageLensConfigurationList- a consumer that will call methods onListStorageLensConfigurationEntry.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#storageLensConfigurationList(java.util.Collection)
-
-