Class: Aws::SESV2::Types::ExportDataSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::ExportDataSource
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
An object that contains details about the data source of the export job. It can only contain one of ‘MetricsDataSource` or `MessageInsightsDataSource` object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message_insights_data_source ⇒ Types::MessageInsightsDataSource
An object that contains filters applied when performing the Message Insights export.
-
#metrics_data_source ⇒ Types::MetricsDataSource
An object that contains details about the data source for the metrics export.
Instance Attribute Details
#message_insights_data_source ⇒ Types::MessageInsightsDataSource
An object that contains filters applied when performing the Message Insights export.
2451 2452 2453 2454 2455 2456 |
# File 'lib/aws-sdk-sesv2/types.rb', line 2451 class ExportDataSource < Struct.new( :metrics_data_source, :message_insights_data_source) SENSITIVE = [] include Aws::Structure end |
#metrics_data_source ⇒ Types::MetricsDataSource
An object that contains details about the data source for the metrics export.
2451 2452 2453 2454 2455 2456 |
# File 'lib/aws-sdk-sesv2/types.rb', line 2451 class ExportDataSource < Struct.new( :metrics_data_source, :message_insights_data_source) SENSITIVE = [] include Aws::Structure end |