@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class PostLineageEventRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
NOOP| Constructor and Description |
|---|
PostLineageEventRequest() |
| Modifier and Type | Method and Description |
|---|---|
PostLineageEventRequest |
clone()
Creates a shallow clone of this object for all fields except the handler context.
|
boolean |
equals(Object obj) |
String |
getClientToken()
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
|
String |
getDomainIdentifier()
The ID of the domain where you want to post a data lineage event.
|
ByteBuffer |
getEvent()
The data lineage event that you want to post.
|
int |
hashCode() |
void |
setClientToken(String clientToken)
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
|
void |
setDomainIdentifier(String domainIdentifier)
The ID of the domain where you want to post a data lineage event.
|
void |
setEvent(ByteBuffer event)
The data lineage event that you want to post.
|
String |
toString()
Returns a string representation of this object.
|
PostLineageEventRequest |
withClientToken(String clientToken)
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
|
PostLineageEventRequest |
withDomainIdentifier(String domainIdentifier)
The ID of the domain where you want to post a data lineage event.
|
PostLineageEventRequest |
withEvent(ByteBuffer event)
The data lineage event that you want to post.
|
addHandlerContext, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getHandlerContext, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestCredentialsProvider, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeoutpublic void setClientToken(String clientToken)
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
clientToken - A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.public String getClientToken()
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
public PostLineageEventRequest withClientToken(String clientToken)
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
clientToken - A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.public void setDomainIdentifier(String domainIdentifier)
The ID of the domain where you want to post a data lineage event.
domainIdentifier - The ID of the domain where you want to post a data lineage event.public String getDomainIdentifier()
The ID of the domain where you want to post a data lineage event.
public PostLineageEventRequest withDomainIdentifier(String domainIdentifier)
The ID of the domain where you want to post a data lineage event.
domainIdentifier - The ID of the domain where you want to post a data lineage event.public void setEvent(ByteBuffer event)
The data lineage event that you want to post. Only open-lineage run event are supported as events.
The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. Users of the SDK should not perform Base64 encoding on this field.
Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.
event - The data lineage event that you want to post. Only open-lineage run event are supported as events.public ByteBuffer getEvent()
The data lineage event that you want to post. Only open-lineage run event are supported as events.
ByteBuffers are stateful. Calling their get methods changes their position. We recommend
using ByteBuffer.asReadOnlyBuffer() to create a read-only view of the buffer with an independent
position, and calling get methods on this rather than directly on the returned ByteBuffer.
Doing so will ensure that anyone else using the ByteBuffer will not be affected by changes to the
position.
public PostLineageEventRequest withEvent(ByteBuffer event)
The data lineage event that you want to post. Only open-lineage run event are supported as events.
The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. Users of the SDK should not perform Base64 encoding on this field.
Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.
event - The data lineage event that you want to post. Only open-lineage run event are supported as events.public String toString()
toString in class ObjectObject.toString()public PostLineageEventRequest clone()
AmazonWebServiceRequestclone in class AmazonWebServiceRequestObject.clone()