Class: AWSCDK::QuickSight::CfnDashboard::DataSetIdentifierDeclarationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::DataSetIdentifierDeclarationProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
A data set.
Instance Attribute Summary collapse
-
#data_set_arn ⇒ String
readonly
The Amazon Resource Name (ARN) of the data set.
-
#identifier ⇒ String
readonly
The identifier of the data set, typically the data set's name.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data_set_arn:, identifier:) ⇒ DataSetIdentifierDeclarationProperty
constructor
A new instance of DataSetIdentifierDeclarationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(data_set_arn:, identifier:) ⇒ DataSetIdentifierDeclarationProperty
Returns a new instance of DataSetIdentifierDeclarationProperty.
7365 7366 7367 7368 7369 7370 |
# File 'quick_sight/cfn_dashboard.rb', line 7365 def initialize(data_set_arn:, identifier:) @data_set_arn = data_set_arn Jsii::Type.check_type(@data_set_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "dataSetArn") @identifier = identifier Jsii::Type.check_type(@identifier, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "identifier") end |
Instance Attribute Details
#data_set_arn ⇒ String (readonly)
The Amazon Resource Name (ARN) of the data set.
7376 7377 7378 |
# File 'quick_sight/cfn_dashboard.rb', line 7376 def data_set_arn @data_set_arn end |
#identifier ⇒ String (readonly)
The identifier of the data set, typically the data set's name.
7381 7382 7383 |
# File 'quick_sight/cfn_dashboard.rb', line 7381 def identifier @identifier end |
Class Method Details
.jsii_properties ⇒ Object
7383 7384 7385 7386 7387 7388 |
# File 'quick_sight/cfn_dashboard.rb', line 7383 def self.jsii_properties { :data_set_arn => "dataSetArn", :identifier => "identifier", } end |
Instance Method Details
#to_jsii ⇒ Object
7390 7391 7392 7393 7394 7395 7396 7397 |
# File 'quick_sight/cfn_dashboard.rb', line 7390 def to_jsii result = {} result.merge!({ "dataSetArn" => @data_set_arn, "identifier" => @identifier, }) result.compact end |