Interface ListFormsResponse.Builder
-
- All Superinterfaces:
AmplifyUiBuilderResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListFormsResponse.Builder,ListFormsResponse>,SdkBuilder<ListFormsResponse.Builder,ListFormsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListFormsResponse
public static interface ListFormsResponse.Builder extends AmplifyUiBuilderResponse.Builder, SdkPojo, CopyableBuilder<ListFormsResponse.Builder,ListFormsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListFormsResponse.Builderentities(Collection<FormSummary> entities)The list of forms for the Amplify app.ListFormsResponse.Builderentities(Consumer<FormSummary.Builder>... entities)The list of forms for the Amplify app.ListFormsResponse.Builderentities(FormSummary... entities)The list of forms for the Amplify app.ListFormsResponse.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
ListFormsResponse.Builder entities(Collection<FormSummary> entities)
The list of forms for the Amplify app.
- Parameters:
entities- The list of forms for the Amplify app.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entities
ListFormsResponse.Builder entities(FormSummary... entities)
The list of forms for the Amplify app.
- Parameters:
entities- The list of forms for the Amplify app.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entities
ListFormsResponse.Builder entities(Consumer<FormSummary.Builder>... entities)
The list of forms for the Amplify app.
This is a convenience method that creates an instance of theFormSummary.Builderavoiding the need to create one manually viaFormSummary.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 onFormSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entities(java.util.Collection)
-
nextToken
ListFormsResponse.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.
-
-