Interface ComponentDataConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ComponentDataConfiguration.Builder,
,ComponentDataConfiguration> SdkBuilder<ComponentDataConfiguration.Builder,
,ComponentDataConfiguration> SdkPojo
- Enclosing class:
ComponentDataConfiguration
-
Method Summary
Modifier and TypeMethodDescriptionidentifiers
(String... identifiers) A list of IDs to use to bind data to a component.identifiers
(Collection<String> identifiers) A list of IDs to use to bind data to a component.The name of the data model to use to bind data to a component.predicate
(Consumer<Predicate.Builder> predicate) Represents the conditional logic to use when binding data to a component.Represents the conditional logic to use when binding data to a component.sort
(Collection<SortProperty> sort) Describes how to sort the component's properties.sort
(Consumer<SortProperty.Builder>... sort) Describes how to sort the component's properties.sort
(SortProperty... sort) Describes how to sort the component's properties.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
-
Method Details
-
model
The name of the data model to use to bind data to a component.
- Parameters:
model
- The name of the data model to use to bind data to a component.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sort
Describes how to sort the component's properties.
- Parameters:
sort
- Describes how to sort the component's properties.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sort
Describes how to sort the component's properties.
- Parameters:
sort
- Describes how to sort the component's properties.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sort
Describes how to sort the component's properties.
This is a convenience method that creates an instance of theSortProperty.Builder
avoiding the need to create one manually viaSortProperty.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosort(List<SortProperty>)
.- Parameters:
sort
- a consumer that will call methods onSortProperty.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
predicate
Represents the conditional logic to use when binding data to a component. Use this property to retrieve only a subset of the data in a collection.
- Parameters:
predicate
- Represents the conditional logic to use when binding data to a component. Use this property to retrieve only a subset of the data in a collection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
predicate
Represents the conditional logic to use when binding data to a component. Use this property to retrieve only a subset of the data in a collection.
This is a convenience method that creates an instance of thePredicate.Builder
avoiding the need to create one manually viaPredicate.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed topredicate(Predicate)
.- Parameters:
predicate
- a consumer that will call methods onPredicate.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
identifiers
A list of IDs to use to bind data to a component. Use this property to bind specifically chosen data, rather than data retrieved from a query.
- Parameters:
identifiers
- A list of IDs to use to bind data to a component. Use this property to bind specifically chosen data, rather than data retrieved from a query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
identifiers
A list of IDs to use to bind data to a component. Use this property to bind specifically chosen data, rather than data retrieved from a query.
- Parameters:
identifiers
- A list of IDs to use to bind data to a component. Use this property to bind specifically chosen data, rather than data retrieved from a query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-