Class: Aws::MailManager::Types::ExportDestinationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MailManager::Types::ExportDestinationConfiguration
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3 ⇒ Types::S3ExportDestinationConfiguration
Configuration for delivering to an Amazon S3 bucket.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#s3 ⇒ Types::S3ExportDestinationConfiguration
Configuration for delivering to an Amazon S3 bucket.
963 964 965 966 967 968 969 970 971 972 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 963 class ExportDestinationConfiguration < Struct.new( :s3, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3 < ExportDestinationConfiguration; end class Unknown < ExportDestinationConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
963 964 965 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 963 def unknown @unknown end |