Class: Aws::LakeFormation::Types::LFTag
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::LFTag
- Defined in:
- gems/aws-sdk-lakeformation/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.
2109 2110 2111 2112 2113 2114 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 2109 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 1000. A single API call supports 50 values. You can use multiple API calls to add more values.
2109 2110 2111 2112 2113 2114 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 2109 class LFTag < Struct.new( :tag_key, :tag_values) SENSITIVE = [] include Aws::Structure end |