Class: Aws::QuickSight::Types::AnalysisSourceTemplate
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::AnalysisSourceTemplate
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass AnalysisSourceTemplate data as a hash:
{
data_set_references: [ # required
{
data_set_placeholder: "NonEmptyString", # required
data_set_arn: "Arn", # required
},
],
arn: "Arn", # required
}
The source template of an analysis.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the source template of an analysis.
-
#data_set_references ⇒ Array<Types::DataSetReference>
The dataset references of the source template of an analysis.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the source template of an analysis.
413 414 415 416 417 418 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 413 class AnalysisSourceTemplate < Struct.new( :data_set_references, :arn) SENSITIVE = [] include Aws::Structure end |
#data_set_references ⇒ Array<Types::DataSetReference>
The dataset references of the source template of an analysis.
413 414 415 416 417 418 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 413 class AnalysisSourceTemplate < Struct.new( :data_set_references, :arn) SENSITIVE = [] include Aws::Structure end |