Class: Aws::MainframeModernization::Types::StorageConfiguration

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

Overview

Note:

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

Note:

StorageConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of StorageConfiguration corresponding to the set member.

Defines the storage configuration for a runtime environment.

Direct Known Subclasses

Efs, Fsx, Unknown

Defined Under Namespace

Classes: Efs, Fsx, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#efsTypes::EfsStorageConfiguration

Defines the storage configuration for an Amazon EFS file system.



2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 2961

class StorageConfiguration < Struct.new(
  :efs,
  :fsx,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Efs < StorageConfiguration; end
  class Fsx < StorageConfiguration; end
  class Unknown < StorageConfiguration; end
end

#fsxTypes::FsxStorageConfiguration

Defines the storage configuration for an Amazon FSx file system.



2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 2961

class StorageConfiguration < Struct.new(
  :efs,
  :fsx,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Efs < StorageConfiguration; end
  class Fsx < StorageConfiguration; end
  class Unknown < StorageConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2961
2962
2963
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 2961

def unknown
  @unknown
end