Class: Aws::Deadline::Types::JobParameter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb

Overview

Note:

JobParameter is a union - when making an API calls you must set exactly one of the members.

Note:

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.

Direct Known Subclasses

Float, Int, Path, String, Unknown

Defined Under Namespace

Classes: Float, Int, Path, String, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#floatString

A double precision IEEE-754 floating point number represented as a string.

Returns:



4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4373

class JobParameter < Struct.new(
  :float,
  :int,
  :path,
  :string,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Float < JobParameter; end
  class Int < JobParameter; end
  class Path < JobParameter; end
  class String < JobParameter; end
  class Unknown < JobParameter; end
end

#intString

A signed integer represented as a string.

Returns:



4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4373

class JobParameter < Struct.new(
  :float,
  :int,
  :path,
  :string,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Float < JobParameter; end
  class Int < JobParameter; end
  class Path < JobParameter; end
  class String < JobParameter; end
  class Unknown < JobParameter; end
end

#pathString

A file system path represented as a string.

Returns:



4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4373

class JobParameter < Struct.new(
  :float,
  :int,
  :path,
  :string,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Float < JobParameter; end
  class Int < JobParameter; end
  class Path < JobParameter; end
  class String < JobParameter; end
  class Unknown < JobParameter; end
end

#stringString

A UTF-8 string.

Returns:



4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4373

class JobParameter < Struct.new(
  :float,
  :int,
  :path,
  :string,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Float < JobParameter; end
  class Int < JobParameter; end
  class Path < JobParameter; end
  class String < JobParameter; end
  class Unknown < JobParameter; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4373
4374
4375
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4373

def unknown
  @unknown
end