Interface ExportThemesResponse.Builder
-
- All Superinterfaces:
AmplifyUiBuilderResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ExportThemesResponse.Builder,ExportThemesResponse>,SdkBuilder<ExportThemesResponse.Builder,ExportThemesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ExportThemesResponse
public static interface ExportThemesResponse.Builder extends AmplifyUiBuilderResponse.Builder, SdkPojo, CopyableBuilder<ExportThemesResponse.Builder,ExportThemesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExportThemesResponse.Builderentities(Collection<Theme> entities)Represents the configuration of the exported themes.ExportThemesResponse.Builderentities(Consumer<Theme.Builder>... entities)Represents the configuration of the exported themes.ExportThemesResponse.Builderentities(Theme... entities)Represents the configuration of the exported themes.ExportThemesResponse.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
ExportThemesResponse.Builder entities(Collection<Theme> entities)
Represents the configuration of the exported themes.
- Parameters:
entities- Represents the configuration of the exported themes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entities
ExportThemesResponse.Builder entities(Theme... entities)
Represents the configuration of the exported themes.
- Parameters:
entities- Represents the configuration of the exported themes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entities
ExportThemesResponse.Builder entities(Consumer<Theme.Builder>... entities)
Represents the configuration of the exported themes.
This is a convenience method that creates an instance of theTheme.Builderavoiding the need to create one manually viaTheme.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 onTheme.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entities(java.util.Collection)
-
nextToken
ExportThemesResponse.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.
-
-