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
show all
Defined in:
(unknown)

Overview

Note:

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

Instance Attribute Details

#dataset_content_version_valueTypes::DatasetContentVersionValue

The value of the variable as a structure that specifies a dataset content version.

Returns:

#double_valueFloat

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

Returns:

  • (Float)

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

#nameString

The name of the variable.

Returns:

  • (String)

    The name of the variable.

#output_file_uri_valueTypes::OutputFileUriValue

The value of the variable as a structure that specifies an output file URI.

Returns:

#string_valueString

The value of the variable as a string.

Returns:

  • (String)

    The value of the variable as a string.