Class: Aws::IoTAnalytics::Types::Variable
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::Variable
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotanalytics/types.rb
Overview
An instance of a variable to be passed to the ‘containerAction` execution. Each variable must have a name and a value given by one of `stringValue`, `datasetContentVersionValue`, or `outputFileUriValue`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dataset_content_version_value ⇒ Types::DatasetContentVersionValue
The value of the variable as a structure that specifies a dataset content version.
-
#double_value ⇒ Float
The value of the variable as a double (numeric).
-
#name ⇒ String
The name of the variable.
-
#output_file_uri_value ⇒ Types::OutputFileUriValue
The value of the variable as a structure that specifies an output file URI.
-
#string_value ⇒ String
The value of the variable as a string.
Instance Attribute Details
#dataset_content_version_value ⇒ Types::DatasetContentVersionValue
The value of the variable as a structure that specifies a dataset content version.
3111 3112 3113 3114 3115 3116 3117 3118 3119 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 3111 class Variable < Struct.new( :name, :string_value, :double_value, :dataset_content_version_value, :output_file_uri_value) SENSITIVE = [] include Aws::Structure end |
#double_value ⇒ Float
The value of the variable as a double (numeric).
3111 3112 3113 3114 3115 3116 3117 3118 3119 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 3111 class Variable < Struct.new( :name, :string_value, :double_value, :dataset_content_version_value, :output_file_uri_value) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the variable.
3111 3112 3113 3114 3115 3116 3117 3118 3119 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 3111 class Variable < Struct.new( :name, :string_value, :double_value, :dataset_content_version_value, :output_file_uri_value) SENSITIVE = [] include Aws::Structure end |
#output_file_uri_value ⇒ Types::OutputFileUriValue
The value of the variable as a structure that specifies an output file URI.
3111 3112 3113 3114 3115 3116 3117 3118 3119 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 3111 class Variable < Struct.new( :name, :string_value, :double_value, :dataset_content_version_value, :output_file_uri_value) SENSITIVE = [] include Aws::Structure end |
#string_value ⇒ String
The value of the variable as a string.
3111 3112 3113 3114 3115 3116 3117 3118 3119 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 3111 class Variable < Struct.new( :name, :string_value, :double_value, :dataset_content_version_value, :output_file_uri_value) SENSITIVE = [] include Aws::Structure end |