Interface GraphLink.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GraphLink.Builder,GraphLink>,SdkBuilder<GraphLink.Builder,GraphLink>,SdkPojo
- Enclosing class:
- GraphLink
@Mutable @NotThreadSafe public static interface GraphLink.Builder extends SdkPojo, CopyableBuilder<GraphLink.Builder,GraphLink>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GraphLink.BuilderdestinationTraceIds(String... destinationTraceIds)Destination traces of a link relationship.GraphLink.BuilderdestinationTraceIds(Collection<String> destinationTraceIds)Destination traces of a link relationship.GraphLink.BuilderreferenceType(String referenceType)Relationship of a trace to the corresponding service.GraphLink.BuildersourceTraceId(String sourceTraceId)Source trace of a link relationship.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
referenceType
GraphLink.Builder referenceType(String referenceType)
Relationship of a trace to the corresponding service.
- Parameters:
referenceType- Relationship of a trace to the corresponding service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceTraceId
GraphLink.Builder sourceTraceId(String sourceTraceId)
Source trace of a link relationship.
- Parameters:
sourceTraceId- Source trace of a link relationship.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationTraceIds
GraphLink.Builder destinationTraceIds(Collection<String> destinationTraceIds)
Destination traces of a link relationship.
- Parameters:
destinationTraceIds- Destination traces of a link relationship.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationTraceIds
GraphLink.Builder destinationTraceIds(String... destinationTraceIds)
Destination traces of a link relationship.
- Parameters:
destinationTraceIds- Destination traces of a link relationship.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-