Class: Aws::LakeFormation::Types::LFTag

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#tag_keyString

The key-name for the LF-tag.

Returns:

  • (String)


1989
1990
1991
1992
1993
1994
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1989

class LFTag < Struct.new(
  :tag_key,
  :tag_values)
  SENSITIVE = []
  include Aws::Structure
end

#tag_valuesArray<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.

Returns:

  • (Array<String>)


1989
1990
1991
1992
1993
1994
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1989

class LFTag < Struct.new(
  :tag_key,
  :tag_values)
  SENSITIVE = []
  include Aws::Structure
end