Class: Aws::DataZone::Types::PostLineageEventInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::PostLineageEventInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datazone/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:event]
Instance Attribute Summary collapse
-
#client_token ⇒ String
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
-
#domain_identifier ⇒ String
The ID of the domain where you want to post a data lineage event.
-
#event ⇒ String
The data lineage event that you want to post.
Instance Attribute Details
#client_token ⇒ String
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.
12105 12106 12107 12108 12109 12110 12111 |
# File 'lib/aws-sdk-datazone/types.rb', line 12105 class PostLineageEventInput < Struct.new( :client_token, :domain_identifier, :event) SENSITIVE = [:event] include Aws::Structure end |
#domain_identifier ⇒ String
The ID of the domain where you want to post a data lineage event.
12105 12106 12107 12108 12109 12110 12111 |
# File 'lib/aws-sdk-datazone/types.rb', line 12105 class PostLineageEventInput < Struct.new( :client_token, :domain_identifier, :event) SENSITIVE = [:event] include Aws::Structure end |
#event ⇒ String
The data lineage event that you want to post. Only open-lineage run event are supported as events.
12105 12106 12107 12108 12109 12110 12111 |
# File 'lib/aws-sdk-datazone/types.rb', line 12105 class PostLineageEventInput < Struct.new( :client_token, :domain_identifier, :event) SENSITIVE = [:event] include Aws::Structure end |