Class: Aws::QuickSight::Types::TemplateSourceAnalysis
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::TemplateSourceAnalysis
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass TemplateSourceAnalysis data as a hash:
{
arn: "Arn", # required
data_set_references: [ # required
{
data_set_placeholder: "NonEmptyString", # required
data_set_arn: "Arn", # required
},
],
}
The source analysis of the template.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the resource.
-
#data_set_references ⇒ Array<Types::DataSetReference>
A structure containing information about the dataset references used as placeholders in the template.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the resource.
11876 11877 11878 11879 11880 11881 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 11876 class TemplateSourceAnalysis < Struct.new( :arn, :data_set_references) SENSITIVE = [] include Aws::Structure end |
#data_set_references ⇒ Array<Types::DataSetReference>
A structure containing information about the dataset references used as placeholders in the template.
11876 11877 11878 11879 11880 11881 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 11876 class TemplateSourceAnalysis < Struct.new( :arn, :data_set_references) SENSITIVE = [] include Aws::Structure end |