Interface ExportComponentsResponse.Builder
-
- All Superinterfaces:
AmplifyUiBuilderResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ExportComponentsResponse.Builder,ExportComponentsResponse>,SdkBuilder<ExportComponentsResponse.Builder,ExportComponentsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ExportComponentsResponse
public static interface ExportComponentsResponse.Builder extends AmplifyUiBuilderResponse.Builder, SdkPojo, CopyableBuilder<ExportComponentsResponse.Builder,ExportComponentsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExportComponentsResponse.Builderentities(Collection<Component> entities)Represents the configuration of the exported components.ExportComponentsResponse.Builderentities(Consumer<Component.Builder>... entities)Represents the configuration of the exported components.ExportComponentsResponse.Builderentities(Component... entities)Represents the configuration of the exported components.ExportComponentsResponse.BuildernextToken(String nextToken)The pagination token that's included if more results are available.-
Methods inherited from interface software.amazon.awssdk.services.amplifyuibuilder.model.AmplifyUiBuilderResponse.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
-
entities
ExportComponentsResponse.Builder entities(Collection<Component> entities)
Represents the configuration of the exported components.
- Parameters:
entities- Represents the configuration of the exported components.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entities
ExportComponentsResponse.Builder entities(Component... entities)
Represents the configuration of the exported components.
- Parameters:
entities- Represents the configuration of the exported components.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entities
ExportComponentsResponse.Builder entities(Consumer<Component.Builder>... entities)
Represents the configuration of the exported components.
This is a convenience method that creates an instance of theComponent.Builderavoiding the need to create one manually viaComponent.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#entities(List.) - Parameters:
entities- a consumer that will call methods onComponent.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entities(java.util.Collection)
-
nextToken
ExportComponentsResponse.Builder nextToken(String nextToken)
The pagination token that's included if more results are available.
- Parameters:
nextToken- The pagination token that's included if more results are available.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-