Class: AWSCDK::IoTAnalytics::CfnDataset::OutputFileURIValueProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::IoTAnalytics::CfnDataset::OutputFileURIValueProperty
- Defined in:
- io_t_analytics/cfn_dataset.rb
Overview
The value of the variable as a structure that specifies an output file URI.
Instance Attribute Summary collapse
-
#file_name ⇒ String
readonly
The URI of the location where dataset contents are stored, usually the URI of a file in an S3 bucket.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(file_name:) ⇒ OutputFileURIValueProperty
constructor
A new instance of OutputFileURIValueProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(file_name:) ⇒ OutputFileURIValueProperty
Returns a new instance of OutputFileURIValueProperty.
1151 1152 1153 1154 |
# File 'io_t_analytics/cfn_dataset.rb', line 1151 def initialize(file_name:) @file_name = file_name Jsii::Type.check_type(@file_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "fileName") end |
Instance Attribute Details
#file_name ⇒ String (readonly)
The URI of the location where dataset contents are stored, usually the URI of a file in an S3 bucket.
1160 1161 1162 |
# File 'io_t_analytics/cfn_dataset.rb', line 1160 def file_name @file_name end |
Class Method Details
.jsii_properties ⇒ Object
1162 1163 1164 1165 1166 |
# File 'io_t_analytics/cfn_dataset.rb', line 1162 def self.jsii_properties { :file_name => "fileName", } end |
Instance Method Details
#to_jsii ⇒ Object
1168 1169 1170 1171 1172 1173 1174 |
# File 'io_t_analytics/cfn_dataset.rb', line 1168 def to_jsii result = {} result.merge!({ "fileName" => @file_name, }) result.compact end |