Class: Aws::LakeFormation::Types::LFTag
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::LFTag
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lakeformation/types.rb
Overview
A structure that allows an admin to grant user permissions on certain conditions. For example, granting a role access to all columns that do not have the LF-tag ‘PII’ in tables that have the LF-tag ‘Prod’.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tag_key ⇒ String
The key-name for the LF-tag.
-
#tag_values ⇒ Array<String>
A list of possible values an attribute can take.
Instance Attribute Details
#tag_key ⇒ String
The key-name for the LF-tag.
2131 2132 2133 2134 2135 2136 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 2131 class LFTag < Struct.new( :tag_key, :tag_values) SENSITIVE = [] include Aws::Structure end |
#tag_values ⇒ Array<String>
A list of possible values an attribute can take.
The maximum number of values that can be defined for a LF-Tag is
-
A single API call supports 50 values. You can use multiple API
calls to add more values.
2131 2132 2133 2134 2135 2136 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 2131 class LFTag < Struct.new( :tag_key, :tag_values) SENSITIVE = [] include Aws::Structure end |