Class: Aws::MainframeModernization::Types::DatasetDetailOrgAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::MainframeModernization::Types::DatasetDetailOrgAttributes
- Defined in:
- gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb
Overview
DatasetDetailOrgAttributes is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DatasetDetailOrgAttributes corresponding to the set member.
Additional details about the data set. Different attributes correspond to different data set organizations. The values are populated based on datasetOrg, storageType and backend (Blu Age or Micro Focus).
Defined Under Namespace
Classes: Gdg, Po, Ps, Unknown, Vsam
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#gdg ⇒ Types::GdgDetailAttributes
The generation data group of the data set.
-
#po ⇒ Types::PoDetailAttributes
The details of a PO type data set.
-
#ps ⇒ Types::PsDetailAttributes
The details of a PS type data set.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#vsam ⇒ Types::VsamDetailAttributes
The details of a VSAM data set.
Instance Attribute Details
#gdg ⇒ Types::GdgDetailAttributes
The generation data group of the data set.
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 |
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 851 class DatasetDetailOrgAttributes < Struct.new( :gdg, :po, :ps, :vsam, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Gdg < DatasetDetailOrgAttributes; end class Po < DatasetDetailOrgAttributes; end class Ps < DatasetDetailOrgAttributes; end class Vsam < DatasetDetailOrgAttributes; end class Unknown < DatasetDetailOrgAttributes; end end |
#po ⇒ Types::PoDetailAttributes
The details of a PO type data set.
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 |
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 851 class DatasetDetailOrgAttributes < Struct.new( :gdg, :po, :ps, :vsam, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Gdg < DatasetDetailOrgAttributes; end class Po < DatasetDetailOrgAttributes; end class Ps < DatasetDetailOrgAttributes; end class Vsam < DatasetDetailOrgAttributes; end class Unknown < DatasetDetailOrgAttributes; end end |
#ps ⇒ Types::PsDetailAttributes
The details of a PS type data set.
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 |
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 851 class DatasetDetailOrgAttributes < Struct.new( :gdg, :po, :ps, :vsam, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Gdg < DatasetDetailOrgAttributes; end class Po < DatasetDetailOrgAttributes; end class Ps < DatasetDetailOrgAttributes; end class Vsam < DatasetDetailOrgAttributes; end class Unknown < DatasetDetailOrgAttributes; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
851 852 853 |
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 851 def unknown @unknown end |
#vsam ⇒ Types::VsamDetailAttributes
The details of a VSAM data set.
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 |
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 851 class DatasetDetailOrgAttributes < Struct.new( :gdg, :po, :ps, :vsam, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Gdg < DatasetDetailOrgAttributes; end class Po < DatasetDetailOrgAttributes; end class Ps < DatasetDetailOrgAttributes; end class Vsam < DatasetDetailOrgAttributes; end class Unknown < DatasetDetailOrgAttributes; end end |