Class: Aws::LakeFormation::Types::UpdateLFTagRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::UpdateLFTagRequest
- Defined in:
- gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb
Overview
Note:
When making an API call, you may pass UpdateLFTagRequest data as a hash:
{
catalog_id: "CatalogIdString",
tag_key: "LFTagKey", # required
tag_values_to_delete: ["LFTagValue"],
tag_values_to_add: ["LFTagValue"],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#catalog_id ⇒ String
The identifier for the Data Catalog.
-
#tag_key ⇒ String
The key-name for the LF-tag for which to add or delete values.
-
#tag_values_to_add ⇒ Array<String>
A list of LF-tag values to add from the LF-tag.
-
#tag_values_to_delete ⇒ Array<String>
A list of LF-tag values to delete from the LF-tag.
Instance Attribute Details
#catalog_id ⇒ String
The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
4241 4242 4243 4244 4245 4246 4247 4248 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 4241 class UpdateLFTagRequest < Struct.new( :catalog_id, :tag_key, :tag_values_to_delete, :tag_values_to_add) SENSITIVE = [] include Aws::Structure end |
#tag_key ⇒ String
The key-name for the LF-tag for which to add or delete values.
4241 4242 4243 4244 4245 4246 4247 4248 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 4241 class UpdateLFTagRequest < Struct.new( :catalog_id, :tag_key, :tag_values_to_delete, :tag_values_to_add) SENSITIVE = [] include Aws::Structure end |
#tag_values_to_add ⇒ Array<String>
A list of LF-tag values to add from the LF-tag.
4241 4242 4243 4244 4245 4246 4247 4248 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 4241 class UpdateLFTagRequest < Struct.new( :catalog_id, :tag_key, :tag_values_to_delete, :tag_values_to_add) SENSITIVE = [] include Aws::Structure end |
#tag_values_to_delete ⇒ Array<String>
A list of LF-tag values to delete from the LF-tag.
4241 4242 4243 4244 4245 4246 4247 4248 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 4241 class UpdateLFTagRequest < Struct.new( :catalog_id, :tag_key, :tag_values_to_delete, :tag_values_to_add) SENSITIVE = [] include Aws::Structure end |