Interface BatchAttachTypedLink.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchAttachTypedLink.Builder,BatchAttachTypedLink>,SdkBuilder<BatchAttachTypedLink.Builder,BatchAttachTypedLink>,SdkPojo
- Enclosing class:
- BatchAttachTypedLink
public static interface BatchAttachTypedLink.Builder extends SdkPojo, CopyableBuilder<BatchAttachTypedLink.Builder,BatchAttachTypedLink>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BatchAttachTypedLink.Builderattributes(Collection<AttributeNameAndValue> attributes)A set of attributes that are associated with the typed link.BatchAttachTypedLink.Builderattributes(Consumer<AttributeNameAndValue.Builder>... attributes)A set of attributes that are associated with the typed link.BatchAttachTypedLink.Builderattributes(AttributeNameAndValue... attributes)A set of attributes that are associated with the typed link.default BatchAttachTypedLink.BuildersourceObjectReference(Consumer<ObjectReference.Builder> sourceObjectReference)Identifies the source object that the typed link will attach to.BatchAttachTypedLink.BuildersourceObjectReference(ObjectReference sourceObjectReference)Identifies the source object that the typed link will attach to.default BatchAttachTypedLink.BuildertargetObjectReference(Consumer<ObjectReference.Builder> targetObjectReference)Identifies the target object that the typed link will attach to.BatchAttachTypedLink.BuildertargetObjectReference(ObjectReference targetObjectReference)Identifies the target object that the typed link will attach to.default BatchAttachTypedLink.BuildertypedLinkFacet(Consumer<TypedLinkSchemaAndFacetName.Builder> typedLinkFacet)Identifies the typed link facet that is associated with the typed link.BatchAttachTypedLink.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
-
sourceObjectReference
BatchAttachTypedLink.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 BatchAttachTypedLink.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
BatchAttachTypedLink.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 BatchAttachTypedLink.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)
-
typedLinkFacet
BatchAttachTypedLink.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 BatchAttachTypedLink.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)
-
attributes
BatchAttachTypedLink.Builder attributes(Collection<AttributeNameAndValue> attributes)
A set of attributes that are associated with the typed link.
- Parameters:
attributes- A set of attributes that are associated with the typed link.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
BatchAttachTypedLink.Builder attributes(AttributeNameAndValue... attributes)
A set of attributes that are associated with the typed link.
- Parameters:
attributes- A set of attributes that are associated with the typed link.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
BatchAttachTypedLink.Builder attributes(Consumer<AttributeNameAndValue.Builder>... attributes)
A set of attributes that are associated with the typed link.
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#attributes(List.) - Parameters:
attributes- 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:
#attributes(java.util.Collection)
-
-