Class: Aws::LakeFormation::Types::DataLocationResource
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::DataLocationResource
- Defined in:
- gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb
Overview
Note:
When making an API call, you may pass DataLocationResource data as a hash:
{
catalog_id: "CatalogIdString",
resource_arn: "ResourceArnString", # required
}
A structure for a data location object where permissions are granted or revoked.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#catalog_id ⇒ String
The identifier for the Data Catalog where the location is registered with Lake Formation.
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) that uniquely identifies the data location resource.
Instance Attribute Details
#catalog_id ⇒ String
The identifier for the Data Catalog where the location is registered with Lake Formation. By default, it is the account ID of the caller.
1026 1027 1028 1029 1030 1031 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1026 class DataLocationResource < Struct.new( :catalog_id, :resource_arn) SENSITIVE = [] include Aws::Structure end |
#resource_arn ⇒ String
The Amazon Resource Name (ARN) that uniquely identifies the data location resource.
1026 1027 1028 1029 1030 1031 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1026 class DataLocationResource < Struct.new( :catalog_id, :resource_arn) SENSITIVE = [] include Aws::Structure end |