Class: AWSCDK::IoTAnalytics::CfnDataset::DatasetContentVersionValueProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
io_t_analytics/cfn_dataset.rb

Overview

The dataset whose latest contents are used as input to the notebook or application.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(dataset_name:) ⇒ DatasetContentVersionValueProperty

Returns a new instance of DatasetContentVersionValueProperty.

Parameters:

  • dataset_name (String)

    The name of the dataset whose latest contents are used as input to the notebook or application.



833
834
835
836
# File 'io_t_analytics/cfn_dataset.rb', line 833

def initialize(dataset_name:)
  @dataset_name = dataset_name
  Jsii::Type.check_type(@dataset_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "datasetName")
end

Instance Attribute Details

#dataset_nameString (readonly)

The name of the dataset whose latest contents are used as input to the notebook or application.



842
843
844
# File 'io_t_analytics/cfn_dataset.rb', line 842

def dataset_name
  @dataset_name
end

Class Method Details

.jsii_propertiesObject



844
845
846
847
848
# File 'io_t_analytics/cfn_dataset.rb', line 844

def self.jsii_properties
  {
    :dataset_name => "datasetName",
  }
end

Instance Method Details

#to_jsiiObject



850
851
852
853
854
855
856
# File 'io_t_analytics/cfn_dataset.rb', line 850

def to_jsii
  result = {}
  result.merge!({
    "datasetName" => @dataset_name,
  })
  result.compact
end