Interface TypedLinkSpecifier.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TypedLinkSpecifier.Builder,TypedLinkSpecifier>,SdkBuilder<TypedLinkSpecifier.Builder,TypedLinkSpecifier>,SdkPojo
- Enclosing class:
- TypedLinkSpecifier
public static interface TypedLinkSpecifier.Builder extends SdkPojo, CopyableBuilder<TypedLinkSpecifier.Builder,TypedLinkSpecifier>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description TypedLinkSpecifier.BuilderidentityAttributeValues(Collection<AttributeNameAndValue> identityAttributeValues)Identifies the attribute value to update.TypedLinkSpecifier.BuilderidentityAttributeValues(Consumer<AttributeNameAndValue.Builder>... identityAttributeValues)Identifies the attribute value to update.TypedLinkSpecifier.BuilderidentityAttributeValues(AttributeNameAndValue... identityAttributeValues)Identifies the attribute value to update.default TypedLinkSpecifier.BuildersourceObjectReference(Consumer<ObjectReference.Builder> sourceObjectReference)Identifies the source object that the typed link will attach to.TypedLinkSpecifier.BuildersourceObjectReference(ObjectReference sourceObjectReference)Identifies the source object that the typed link will attach to.default TypedLinkSpecifier.BuildertargetObjectReference(Consumer<ObjectReference.Builder> targetObjectReference)Identifies the target object that the typed link will attach to.TypedLinkSpecifier.BuildertargetObjectReference(ObjectReference targetObjectReference)Identifies the target object that the typed link will attach to.default TypedLinkSpecifier.BuildertypedLinkFacet(Consumer<TypedLinkSchemaAndFacetName.Builder> typedLinkFacet)Identifies the typed link facet that is associated with the typed link.TypedLinkSpecifier.BuildertypedLinkFacet(TypedLinkSchemaAndFacetName typedLinkFacet)Identifies the typed link facet that is associated with the typed link.-
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
-
typedLinkFacet
TypedLinkSpecifier.Builder typedLinkFacet(TypedLinkSchemaAndFacetName typedLinkFacet)
Identifies the typed link facet that is associated with the typed link.
- Parameters:
typedLinkFacet- Identifies the typed link facet that is associated with the typed link.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
typedLinkFacet
default TypedLinkSpecifier.Builder typedLinkFacet(Consumer<TypedLinkSchemaAndFacetName.Builder> typedLinkFacet)
Identifies the typed link facet that is associated with the typed link.
This is a convenience method that creates an instance of theTypedLinkSchemaAndFacetName.Builderavoiding the need to create one manually viaTypedLinkSchemaAndFacetName.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totypedLinkFacet(TypedLinkSchemaAndFacetName).- Parameters:
typedLinkFacet- a consumer that will call methods onTypedLinkSchemaAndFacetName.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
typedLinkFacet(TypedLinkSchemaAndFacetName)
-
sourceObjectReference
TypedLinkSpecifier.Builder sourceObjectReference(ObjectReference sourceObjectReference)
Identifies the source object that the typed link will attach to.
- Parameters:
sourceObjectReference- Identifies the source object that the typed link will attach to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceObjectReference
default TypedLinkSpecifier.Builder sourceObjectReference(Consumer<ObjectReference.Builder> sourceObjectReference)
Identifies the source object that the typed link will attach to.
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 tosourceObjectReference(ObjectReference).- Parameters:
sourceObjectReference- 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:
sourceObjectReference(ObjectReference)
-
targetObjectReference
TypedLinkSpecifier.Builder targetObjectReference(ObjectReference targetObjectReference)
Identifies the target object that the typed link will attach to.
- Parameters:
targetObjectReference- Identifies the target object that the typed link will attach to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetObjectReference
default TypedLinkSpecifier.Builder targetObjectReference(Consumer<ObjectReference.Builder> targetObjectReference)
Identifies the target object that the typed link will attach to.
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 totargetObjectReference(ObjectReference).- Parameters:
targetObjectReference- 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:
targetObjectReference(ObjectReference)
-
identityAttributeValues
TypedLinkSpecifier.Builder identityAttributeValues(Collection<AttributeNameAndValue> identityAttributeValues)
Identifies the attribute value to update.
- Parameters:
identityAttributeValues- Identifies the attribute value to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
identityAttributeValues
TypedLinkSpecifier.Builder identityAttributeValues(AttributeNameAndValue... identityAttributeValues)
Identifies the attribute value to update.
- Parameters:
identityAttributeValues- Identifies the attribute value to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
identityAttributeValues
TypedLinkSpecifier.Builder identityAttributeValues(Consumer<AttributeNameAndValue.Builder>... identityAttributeValues)
Identifies the attribute value to update.
This is a convenience method that creates an instance of theAttributeNameAndValue.Builderavoiding the need to create one manually viaAttributeNameAndValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#identityAttributeValues(List.) - Parameters:
identityAttributeValues- a consumer that will call methods onAttributeNameAndValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#identityAttributeValues(java.util.Collection)
-
-