Class: Aws::MailManager::Types::ExportDestinationConfiguration

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

Overview

Note:

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

Note:

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

The destination configuration for delivering exported email data.

Direct Known Subclasses

S3, Unknown

Defined Under Namespace

Classes: S3, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3Types::S3ExportDestinationConfiguration

Configuration for delivering to an Amazon S3 bucket.



900
901
902
903
904
905
906
907
908
909
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 900

class ExportDestinationConfiguration < Struct.new(
  :s3,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class S3 < ExportDestinationConfiguration; end
  class Unknown < ExportDestinationConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



900
901
902
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 900

def unknown
  @unknown
end