Class: Aws::Deadline::Types::TaskParameterValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::Deadline::Types::TaskParameterValue
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-deadline/types.rb
Overview
Note:
TaskParameterValue is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TaskParameterValue corresponding to the set member.
The data types for the task parameters.
Defined Under Namespace
Classes: Float, Int, Path, String, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#float ⇒ String
A double precision IEEE-754 floating point number represented as a string.
-
#int ⇒ String
A signed integer represented as a string.
-
#path ⇒ String
A file system path represented as a string.
-
#string ⇒ String
A UTF-8 string.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#float ⇒ String
A double precision IEEE-754 floating point number represented as a string.
8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 |
# File 'lib/aws-sdk-deadline/types.rb', line 8283 class TaskParameterValue < Struct.new( :int, :float, :string, :path, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Int < TaskParameterValue; end class Float < TaskParameterValue; end class String < TaskParameterValue; end class Path < TaskParameterValue; end class Unknown < TaskParameterValue; end end |
#int ⇒ String
A signed integer represented as a string.
8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 |
# File 'lib/aws-sdk-deadline/types.rb', line 8283 class TaskParameterValue < Struct.new( :int, :float, :string, :path, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Int < TaskParameterValue; end class Float < TaskParameterValue; end class String < TaskParameterValue; end class Path < TaskParameterValue; end class Unknown < TaskParameterValue; end end |
#path ⇒ String
A file system path represented as a string.
8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 |
# File 'lib/aws-sdk-deadline/types.rb', line 8283 class TaskParameterValue < Struct.new( :int, :float, :string, :path, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Int < TaskParameterValue; end class Float < TaskParameterValue; end class String < TaskParameterValue; end class Path < TaskParameterValue; end class Unknown < TaskParameterValue; end end |
#string ⇒ String
A UTF-8 string.
8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 |
# File 'lib/aws-sdk-deadline/types.rb', line 8283 class TaskParameterValue < Struct.new( :int, :float, :string, :path, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Int < TaskParameterValue; end class Float < TaskParameterValue; end class String < TaskParameterValue; end class Path < TaskParameterValue; end class Unknown < TaskParameterValue; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
8283 8284 8285 |
# File 'lib/aws-sdk-deadline/types.rb', line 8283 def unknown @unknown end |