Class: AWSCDK::QuickSight::CfnDashboard::DataSetIdentifierDeclarationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_dashboard.rb

Overview

A data set.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data_set_arn:, identifier:) ⇒ DataSetIdentifierDeclarationProperty

Returns a new instance of DataSetIdentifierDeclarationProperty.

Parameters:

  • data_set_arn (String)

    The Amazon Resource Name (ARN) of the data set.

  • identifier (String)

    The identifier of the data set, typically the data set's name.



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_arnString (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

#identifierString (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_propertiesObject



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_jsiiObject



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