You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::IoTAnalytics::Types::Variable
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::Variable
- Defined in:
- (unknown)
Overview
When passing Variable as input to an Aws::Client method, you can use a vanilla Hash:
{
name: "VariableName", # required
string_value: "StringValue",
double_value: 1.0,
dataset_content_version_value: {
dataset_name: "DatasetName", # required
},
output_file_uri_value: {
file_name: "OutputFileName", # required
},
}
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
.
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.
#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.