Class: Aws::LakeFormation::Types::ListLFTagsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::ListLFTagsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lakeformation/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#catalog_id ⇒ String
The identifier for the Data Catalog.
-
#max_results ⇒ Integer
The maximum number of results to return.
-
#next_token ⇒ String
A continuation token, if this is not the first call to retrieve this list.
-
#resource_share_type ⇒ String
If resource share type is ‘ALL`, returns both in-account LF-tags and shared LF-tags that the requester has permission to view.
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.
2442 2443 2444 2445 2446 2447 2448 2449 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 2442 class ListLFTagsRequest < Struct.new( :catalog_id, :resource_share_type, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return.
2442 2443 2444 2445 2446 2447 2448 2449 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 2442 class ListLFTagsRequest < Struct.new( :catalog_id, :resource_share_type, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A continuation token, if this is not the first call to retrieve this list.
2442 2443 2444 2445 2446 2447 2448 2449 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 2442 class ListLFTagsRequest < Struct.new( :catalog_id, :resource_share_type, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#resource_share_type ⇒ String
If resource share type is ‘ALL`, returns both in-account LF-tags and shared LF-tags that the requester has permission to view. If resource share type is `FOREIGN`, returns all share LF-tags that the requester can view. If no resource share type is passed, lists LF-tags in the given catalog ID that the requester has permission to view.
2442 2443 2444 2445 2446 2447 2448 2449 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 2442 class ListLFTagsRequest < Struct.new( :catalog_id, :resource_share_type, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |