Class: Aws::IoTAnalytics::Types::Variable

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iotanalytics/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

Instance Attribute Details

#dataset_content_version_valueTypes::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 'gems/aws-sdk-iotanalytics/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_valueFloat

The value of the variable as a double (numeric).

Returns:

  • (Float)


3111
3112
3113
3114
3115
3116
3117
3118
3119
# File 'gems/aws-sdk-iotanalytics/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

#nameString

The name of the variable.

Returns:

  • (String)


3111
3112
3113
3114
3115
3116
3117
3118
3119
# File 'gems/aws-sdk-iotanalytics/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_valueTypes::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 'gems/aws-sdk-iotanalytics/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_valueString

The value of the variable as a string.

Returns:

  • (String)


3111
3112
3113
3114
3115
3116
3117
3118
3119
# File 'gems/aws-sdk-iotanalytics/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