Interface BatchGetObjectAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchGetObjectAttributes.Builder,BatchGetObjectAttributes>,SdkBuilder<BatchGetObjectAttributes.Builder,BatchGetObjectAttributes>,SdkPojo
- Enclosing class:
- BatchGetObjectAttributes
public static interface BatchGetObjectAttributes.Builder extends SdkPojo, CopyableBuilder<BatchGetObjectAttributes.Builder,BatchGetObjectAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BatchGetObjectAttributes.BuilderattributeNames(String... attributeNames)List of attribute names whose values will be retrieved.BatchGetObjectAttributes.BuilderattributeNames(Collection<String> attributeNames)List of attribute names whose values will be retrieved.default BatchGetObjectAttributes.BuilderobjectReference(Consumer<ObjectReference.Builder> objectReference)Reference that identifies the object whose attributes will be retrieved.BatchGetObjectAttributes.BuilderobjectReference(ObjectReference objectReference)Reference that identifies the object whose attributes will be retrieved.default BatchGetObjectAttributes.BuilderschemaFacet(Consumer<SchemaFacet.Builder> schemaFacet)Identifier for the facet whose attributes will be retrieved.BatchGetObjectAttributes.BuilderschemaFacet(SchemaFacet schemaFacet)Identifier for the facet whose attributes will be retrieved.-
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
BatchGetObjectAttributes.Builder objectReference(ObjectReference objectReference)
Reference that identifies the object whose attributes will be retrieved.
- Parameters:
objectReference- Reference that identifies the object whose attributes will be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectReference
default BatchGetObjectAttributes.Builder objectReference(Consumer<ObjectReference.Builder> objectReference)
Reference that identifies the object whose attributes will be retrieved.
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)
-
schemaFacet
BatchGetObjectAttributes.Builder schemaFacet(SchemaFacet schemaFacet)
Identifier for the facet whose attributes will be retrieved. See SchemaFacet for details.
- Parameters:
schemaFacet- Identifier for the facet whose attributes will be retrieved. See SchemaFacet for details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schemaFacet
default BatchGetObjectAttributes.Builder schemaFacet(Consumer<SchemaFacet.Builder> schemaFacet)
Identifier for the facet whose attributes will be retrieved. See SchemaFacet for details.
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 toschemaFacet(SchemaFacet).- Parameters:
schemaFacet- 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:
schemaFacet(SchemaFacet)
-
attributeNames
BatchGetObjectAttributes.Builder attributeNames(Collection<String> attributeNames)
List of attribute names whose values will be retrieved.
- Parameters:
attributeNames- List of attribute names whose values will be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributeNames
BatchGetObjectAttributes.Builder attributeNames(String... attributeNames)
List of attribute names whose values will be retrieved.
- Parameters:
attributeNames- List of attribute names whose values will be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-