Class: AWSCDK::Interfaces::AWSQuicksight::AnalysisReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSQuicksight::AnalysisReference
- Defined in:
- interfaces/aws_quicksight/analysis_reference.rb
Overview
A reference to a Analysis resource.
Instance Attribute Summary collapse
-
#analysis_arn ⇒ String
readonly
The ARN of the Analysis resource.
-
#analysis_id ⇒ String
readonly
The AnalysisId of the Analysis resource.
-
#aws_account_id ⇒ String
readonly
The AwsAccountId of the Analysis resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(analysis_arn:, analysis_id:, aws_account_id:) ⇒ AnalysisReference
constructor
A new instance of AnalysisReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(analysis_arn:, analysis_id:, aws_account_id:) ⇒ AnalysisReference
Returns a new instance of AnalysisReference.
10 11 12 13 14 15 16 17 |
# File 'interfaces/aws_quicksight/analysis_reference.rb', line 10 def initialize(analysis_arn:, analysis_id:, aws_account_id:) @analysis_arn = analysis_arn Jsii::Type.check_type(@analysis_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "analysisArn") @analysis_id = analysis_id Jsii::Type.check_type(@analysis_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "analysisId") @aws_account_id = aws_account_id Jsii::Type.check_type(@aws_account_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "awsAccountId") end |
Instance Attribute Details
#analysis_arn ⇒ String (readonly)
The ARN of the Analysis resource.
22 23 24 |
# File 'interfaces/aws_quicksight/analysis_reference.rb', line 22 def analysis_arn @analysis_arn end |
#analysis_id ⇒ String (readonly)
The AnalysisId of the Analysis resource.
26 27 28 |
# File 'interfaces/aws_quicksight/analysis_reference.rb', line 26 def analysis_id @analysis_id end |
#aws_account_id ⇒ String (readonly)
The AwsAccountId of the Analysis resource.
30 31 32 |
# File 'interfaces/aws_quicksight/analysis_reference.rb', line 30 def aws_account_id @aws_account_id end |
Class Method Details
.jsii_properties ⇒ Object
32 33 34 35 36 37 38 |
# File 'interfaces/aws_quicksight/analysis_reference.rb', line 32 def self.jsii_properties { :analysis_arn => "analysisArn", :analysis_id => "analysisId", :aws_account_id => "awsAccountId", } end |
Instance Method Details
#to_jsii ⇒ Object
40 41 42 43 44 45 46 47 48 |
# File 'interfaces/aws_quicksight/analysis_reference.rb', line 40 def to_jsii result = {} result.merge!({ "analysisArn" => @analysis_arn, "analysisId" => @analysis_id, "awsAccountId" => @aws_account_id, }) result.compact end |