Interface BatchGetLinkAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchGetLinkAttributes.Builder,BatchGetLinkAttributes>,SdkBuilder<BatchGetLinkAttributes.Builder,BatchGetLinkAttributes>,SdkPojo
- Enclosing class:
- BatchGetLinkAttributes
public static interface BatchGetLinkAttributes.Builder extends SdkPojo, CopyableBuilder<BatchGetLinkAttributes.Builder,BatchGetLinkAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BatchGetLinkAttributes.BuilderattributeNames(String... attributeNames)A list of attribute names whose values will be retrieved.BatchGetLinkAttributes.BuilderattributeNames(Collection<String> attributeNames)A list of attribute names whose values will be retrieved.default BatchGetLinkAttributes.BuildertypedLinkSpecifier(Consumer<TypedLinkSpecifier.Builder> typedLinkSpecifier)Allows a typed link specifier to be accepted as input.BatchGetLinkAttributes.BuildertypedLinkSpecifier(TypedLinkSpecifier typedLinkSpecifier)Allows a typed link specifier to be accepted as input.-
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
-
typedLinkSpecifier
BatchGetLinkAttributes.Builder typedLinkSpecifier(TypedLinkSpecifier typedLinkSpecifier)
Allows a typed link specifier to be accepted as input.
- Parameters:
typedLinkSpecifier- Allows a typed link specifier to be accepted as input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
typedLinkSpecifier
default BatchGetLinkAttributes.Builder typedLinkSpecifier(Consumer<TypedLinkSpecifier.Builder> typedLinkSpecifier)
Allows a typed link specifier to be accepted as input.
This is a convenience method that creates an instance of theTypedLinkSpecifier.Builderavoiding the need to create one manually viaTypedLinkSpecifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totypedLinkSpecifier(TypedLinkSpecifier).- Parameters:
typedLinkSpecifier- a consumer that will call methods onTypedLinkSpecifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
typedLinkSpecifier(TypedLinkSpecifier)
-
attributeNames
BatchGetLinkAttributes.Builder attributeNames(Collection<String> attributeNames)
A list of attribute names whose values will be retrieved.
- Parameters:
attributeNames- A 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
BatchGetLinkAttributes.Builder attributeNames(String... attributeNames)
A list of attribute names whose values will be retrieved.
- Parameters:
attributeNames- A list of attribute names whose values will be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-