Class: Aws::CleanRooms::Types::InheritedDisallowedOutputColumns
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::InheritedDisallowedOutputColumns
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Contains the inherited disallowed output columns constraint and the column lineage tracing each column to its source.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#column_lineage ⇒ Array<Types::ColumnLineageEntry>
The lineage information that traces each disallowed output column back to its source in a parent table.
-
#value ⇒ Array<String>
The list of column names that are disallowed from appearing in query output, inherited from parent tables.
Instance Attribute Details
#column_lineage ⇒ Array<Types::ColumnLineageEntry>
The lineage information that traces each disallowed output column back to its source in a parent table.
6268 6269 6270 6271 6272 6273 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6268 class InheritedDisallowedOutputColumns < Struct.new( :value, :column_lineage) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Array<String>
The list of column names that are disallowed from appearing in query output, inherited from parent tables.
6268 6269 6270 6271 6272 6273 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6268 class InheritedDisallowedOutputColumns < Struct.new( :value, :column_lineage) SENSITIVE = [] include Aws::Structure end |