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