Interface ListExportsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFormationResponse.Builder,CopyableBuilder<ListExportsResponse.Builder,ListExportsResponse>,SdkBuilder<ListExportsResponse.Builder,ListExportsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListExportsResponse
public static interface ListExportsResponse.Builder extends CloudFormationResponse.Builder, SdkPojo, CopyableBuilder<ListExportsResponse.Builder,ListExportsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListExportsResponse.Builderexports(Collection<Export> exports)The output for the ListExports action.ListExportsResponse.Builderexports(Consumer<Export.Builder>... exports)The output for the ListExports action.ListExportsResponse.Builderexports(Export... exports)The output for the ListExports action.ListExportsResponse.BuildernextToken(String nextToken)If the output exceeds 100 exported output values, a string that identifies the next page of exports.-
Methods inherited from interface software.amazon.awssdk.services.cloudformation.model.CloudFormationResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
exports
ListExportsResponse.Builder exports(Collection<Export> exports)
The output for the ListExports action.
- Parameters:
exports- The output for the ListExports action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exports
ListExportsResponse.Builder exports(Export... exports)
The output for the ListExports action.
- Parameters:
exports- The output for the ListExports action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exports
ListExportsResponse.Builder exports(Consumer<Export.Builder>... exports)
The output for the ListExports action.
This is a convenience method that creates an instance of theExport.Builderavoiding the need to create one manually viaExport.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 onExport.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#exports(java.util.Collection)
-
nextToken
ListExportsResponse.Builder nextToken(String nextToken)
If the output exceeds 100 exported output values, a string that identifies the next page of exports. If there is no additional page, this value is null.
- Parameters:
nextToken- If the output exceeds 100 exported output values, a string that identifies the next page of exports. If there is no additional page, this value is null.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-