Class: AWSCDK::IoTAnalytics::CfnDataset::OutputFileURIValueProperty

Inherits:
Jsii::Struct
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(file_name:) ⇒ OutputFileURIValueProperty

Returns a new instance of OutputFileURIValueProperty.

Parameters:

  • file_name (String)

    The URI of the location where dataset contents are stored, usually the URI of a file in an S3 bucket.



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_nameString (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_propertiesObject



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_jsiiObject



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