Class: Aws::MainframeModernization::Types::JobIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::MainframeModernization::Types::JobIdentifier
- Defined in:
- gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb
Overview
Note:
JobIdentifier is a union - when making an API calls you must set exactly one of the members.
Note:
JobIdentifier is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of JobIdentifier corresponding to the set member.
Identifies a specific batch job.
Direct Known Subclasses
Defined Under Namespace
Classes: FileName, ScriptName, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_name ⇒ String
The name of the file that contains the batch job definition.
-
#script_name ⇒ String
The name of the script that contains the batch job definition.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#file_name ⇒ String
The name of the file that contains the batch job definition.
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 |
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 1957 class JobIdentifier < Struct.new( :file_name, :script_name, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class FileName < JobIdentifier; end class ScriptName < JobIdentifier; end class Unknown < JobIdentifier; end end |
#script_name ⇒ String
The name of the script that contains the batch job definition.
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 |
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 1957 class JobIdentifier < Struct.new( :file_name, :script_name, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class FileName < JobIdentifier; end class ScriptName < JobIdentifier; end class Unknown < JobIdentifier; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1957 1958 1959 |
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 1957 def unknown @unknown end |