Interface ListArchiveExportsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListArchiveExportsResponse.Builder,ListArchiveExportsResponse>,MailManagerResponse.Builder,SdkBuilder<ListArchiveExportsResponse.Builder,ListArchiveExportsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListArchiveExportsResponse
public static interface ListArchiveExportsResponse.Builder extends MailManagerResponse.Builder, SdkPojo, CopyableBuilder<ListArchiveExportsResponse.Builder,ListArchiveExportsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListArchiveExportsResponse.Builderexports(Collection<ExportSummary> exports)The list of export job identifiers and statuses.ListArchiveExportsResponse.Builderexports(Consumer<ExportSummary.Builder>... exports)The list of export job identifiers and statuses.ListArchiveExportsResponse.Builderexports(ExportSummary... exports)The list of export job identifiers and statuses.ListArchiveExportsResponse.BuildernextToken(String nextToken)If present, use to retrieve the next page of results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.mailmanager.model.MailManagerResponse.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
-
exports
ListArchiveExportsResponse.Builder exports(Collection<ExportSummary> exports)
The list of export job identifiers and statuses.
- Parameters:
exports- The list of export job identifiers and statuses.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exports
ListArchiveExportsResponse.Builder exports(ExportSummary... exports)
The list of export job identifiers and statuses.
- Parameters:
exports- The list of export job identifiers and statuses.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exports
ListArchiveExportsResponse.Builder exports(Consumer<ExportSummary.Builder>... exports)
The list of export job identifiers and statuses.
This is a convenience method that creates an instance of theExportSummary.Builderavoiding the need to create one manually viaExportSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#exports(List.) - Parameters:
exports- a consumer that will call methods onExportSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#exports(java.util.Collection)
-
nextToken
ListArchiveExportsResponse.Builder nextToken(String nextToken)
If present, use to retrieve the next page of results.
- Parameters:
nextToken- If present, use to retrieve the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-