Class: Aws::Deadline::Types::TaskParameterValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::Deadline::Types::TaskParameterValue
- Defined in:
- gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb
Overview
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: ChunkInt, Float, Int, Path, String, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#chunk_int ⇒ String
A range (for example 1-10) or selection of specific (for example 1,3,7,8,10) integers represented as a string.
-
#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
#chunk_int ⇒ String
A range (for example 1-10) or selection of specific (for example 1,3,7,8,10) integers represented as a string.
9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 9107 class TaskParameterValue < Struct.new( :int, :float, :string, :path, :chunk_int, :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 ChunkInt < TaskParameterValue; end class Unknown < TaskParameterValue; end end |
#float ⇒ String
A double precision IEEE-754 floating point number represented as a string.
9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 9107 class TaskParameterValue < Struct.new( :int, :float, :string, :path, :chunk_int, :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 ChunkInt < TaskParameterValue; end class Unknown < TaskParameterValue; end end |
#int ⇒ String
A signed integer represented as a string.
9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 9107 class TaskParameterValue < Struct.new( :int, :float, :string, :path, :chunk_int, :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 ChunkInt < TaskParameterValue; end class Unknown < TaskParameterValue; end end |
#path ⇒ String
A file system path represented as a string.
9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 9107 class TaskParameterValue < Struct.new( :int, :float, :string, :path, :chunk_int, :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 ChunkInt < TaskParameterValue; end class Unknown < TaskParameterValue; end end |
#string ⇒ String
A UTF-8 string.
9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 9107 class TaskParameterValue < Struct.new( :int, :float, :string, :path, :chunk_int, :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 ChunkInt < TaskParameterValue; end class Unknown < TaskParameterValue; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
9107 9108 9109 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 9107 def unknown @unknown end |