Class: Aws::DataZone::Types::PostLineageEventInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:event]

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

A suitable default value is auto-generated. You should normally not need to pass this option.

Returns:

  • (String)


14586
14587
14588
14589
14590
14591
14592
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 14586

class PostLineageEventInput < Struct.new(
  :client_token,
  :domain_identifier,
  :event)
  SENSITIVE = [:event]
  include Aws::Structure
end

#domain_identifierString

The ID of the domain where you want to post a data lineage event.

Returns:

  • (String)


14586
14587
14588
14589
14590
14591
14592
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 14586

class PostLineageEventInput < Struct.new(
  :client_token,
  :domain_identifier,
  :event)
  SENSITIVE = [:event]
  include Aws::Structure
end

#eventString

The data lineage event that you want to post. Only open-lineage run event are supported as events.

Returns:

  • (String)


14586
14587
14588
14589
14590
14591
14592
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 14586

class PostLineageEventInput < Struct.new(
  :client_token,
  :domain_identifier,
  :event)
  SENSITIVE = [:event]
  include Aws::Structure
end