Interface ExportFormsResponse.Builder
-
- All Superinterfaces:
AmplifyUiBuilderResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ExportFormsResponse.Builder,ExportFormsResponse>,SdkBuilder<ExportFormsResponse.Builder,ExportFormsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ExportFormsResponse
public static interface ExportFormsResponse.Builder extends AmplifyUiBuilderResponse.Builder, SdkPojo, CopyableBuilder<ExportFormsResponse.Builder,ExportFormsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExportFormsResponse.Builderentities(Collection<Form> entities)Represents the configuration of the exported forms.ExportFormsResponse.Builderentities(Consumer<Form.Builder>... entities)Represents the configuration of the exported forms.ExportFormsResponse.Builderentities(Form... entities)Represents the configuration of the exported forms.ExportFormsResponse.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
entities
ExportFormsResponse.Builder entities(Collection<Form> entities)
Represents the configuration of the exported forms.
- Parameters:
entities- Represents the configuration of the exported forms.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entities
ExportFormsResponse.Builder entities(Form... entities)
Represents the configuration of the exported forms.
- Parameters:
entities- Represents the configuration of the exported forms.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entities
ExportFormsResponse.Builder entities(Consumer<Form.Builder>... entities)
Represents the configuration of the exported forms.
This is a convenience method that creates an instance of theForm.Builderavoiding the need to create one manually viaForm.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 onForm.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entities(java.util.Collection
-
nextToken
ExportFormsResponse.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.
-
-