Interface BatchListObjectAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchListObjectAttributes.Builder,BatchListObjectAttributes>,SdkBuilder<BatchListObjectAttributes.Builder,BatchListObjectAttributes>,SdkPojo
- Enclosing class:
- BatchListObjectAttributes
public static interface BatchListObjectAttributes.Builder extends SdkPojo, CopyableBuilder<BatchListObjectAttributes.Builder,BatchListObjectAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default BatchListObjectAttributes.BuilderfacetFilter(Consumer<SchemaFacet.Builder> facetFilter)Used to filter the list of object attributes that are associated with a certain facet.BatchListObjectAttributes.BuilderfacetFilter(SchemaFacet facetFilter)Used to filter the list of object attributes that are associated with a certain facet.BatchListObjectAttributes.BuildermaxResults(Integer maxResults)The maximum number of items to be retrieved in a single call.BatchListObjectAttributes.BuildernextToken(String nextToken)The pagination token.default BatchListObjectAttributes.BuilderobjectReference(Consumer<ObjectReference.Builder> objectReference)Reference of the object whose attributes need to be listed.BatchListObjectAttributes.BuilderobjectReference(ObjectReference objectReference)Reference of the object whose attributes need to be listed.-
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
-
-
-
-
Method Detail
-
objectReference
BatchListObjectAttributes.Builder objectReference(ObjectReference objectReference)
Reference of the object whose attributes need to be listed.
- Parameters:
objectReference- Reference of the object whose attributes need to be listed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectReference
default BatchListObjectAttributes.Builder objectReference(Consumer<ObjectReference.Builder> objectReference)
Reference of the object whose attributes need to be listed.
This is a convenience method that creates an instance of theObjectReference.Builderavoiding the need to create one manually viaObjectReference.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toobjectReference(ObjectReference).- Parameters:
objectReference- a consumer that will call methods onObjectReference.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
objectReference(ObjectReference)
-
nextToken
BatchListObjectAttributes.Builder nextToken(String nextToken)
The pagination token.
- Parameters:
nextToken- The pagination token.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
BatchListObjectAttributes.Builder maxResults(Integer maxResults)
The maximum number of items to be retrieved in a single call. This is an approximate number.
- Parameters:
maxResults- The maximum number of items to be retrieved in a single call. This is an approximate number.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
facetFilter
BatchListObjectAttributes.Builder facetFilter(SchemaFacet facetFilter)
Used to filter the list of object attributes that are associated with a certain facet.
- Parameters:
facetFilter- Used to filter the list of object attributes that are associated with a certain facet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
facetFilter
default BatchListObjectAttributes.Builder facetFilter(Consumer<SchemaFacet.Builder> facetFilter)
Used to filter the list of object attributes that are associated with a certain facet.
This is a convenience method that creates an instance of theSchemaFacet.Builderavoiding the need to create one manually viaSchemaFacet.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofacetFilter(SchemaFacet).- Parameters:
facetFilter- a consumer that will call methods onSchemaFacet.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
facetFilter(SchemaFacet)
-
-