Class: AWSCDK::IoTAnalytics::CfnDataset::DatasetContentVersionValueProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::IoTAnalytics::CfnDataset::DatasetContentVersionValueProperty
- 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
-
#dataset_name ⇒ String
readonly
The name of the dataset whose latest contents are used as input to the notebook or application.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(dataset_name:) ⇒ DatasetContentVersionValueProperty
constructor
A new instance of DatasetContentVersionValueProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(dataset_name:) ⇒ DatasetContentVersionValueProperty
Returns a new instance of DatasetContentVersionValueProperty.
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_name ⇒ String (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_properties ⇒ Object
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_jsii ⇒ Object
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 |