Class: Aws::GlueDataBrew::Types::Metadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::Metadata
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass Metadata data as a hash:
{
source_arn: "Arn",
}
Contains additional resource information needed for specific datasets.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#source_arn ⇒ String
The Amazon Resource Name (ARN) associated with the dataset.
Instance Attribute Details
#source_arn ⇒ String
The Amazon Resource Name (ARN) associated with the dataset. Currently, DataBrew only supports ARNs from Amazon AppFlow.
3570 3571 3572 3573 3574 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3570 class Metadata < Struct.new( :source_arn) SENSITIVE = [] include Aws::Structure end |