Class: Aws::Deadline::Types::JobParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Deadline::Types::JobParameter
- Defined in:
- gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb
Overview
JobParameter is a union - when making an API calls you must set exactly one of the members.
JobParameter is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of JobParameter corresponding to the set member.
The details of job 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.
4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4946 class JobParameter < Struct.new( :int, :float, :string, :path, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Int < JobParameter; end class Float < JobParameter; end class String < JobParameter; end class Path < JobParameter; end class Unknown < JobParameter; end end |
#int ⇒ String
A signed integer represented as a string.
4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4946 class JobParameter < Struct.new( :int, :float, :string, :path, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Int < JobParameter; end class Float < JobParameter; end class String < JobParameter; end class Path < JobParameter; end class Unknown < JobParameter; end end |
#path ⇒ String
A file system path represented as a string.
4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4946 class JobParameter < Struct.new( :int, :float, :string, :path, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Int < JobParameter; end class Float < JobParameter; end class String < JobParameter; end class Path < JobParameter; end class Unknown < JobParameter; end end |
#string ⇒ String
A UTF-8 string.
4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4946 class JobParameter < Struct.new( :int, :float, :string, :path, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Int < JobParameter; end class Float < JobParameter; end class String < JobParameter; end class Path < JobParameter; end class Unknown < JobParameter; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4946 4947 4948 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4946 def unknown @unknown end |