Class: Aws::PinpointEmail::Types::GetDomainStatisticsReportRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointEmail::Types::GetDomainStatisticsReportRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpointemail/types.rb
Overview
A request to obtain deliverability metrics for a domain.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
The domain that you want to obtain deliverability metrics for.
-
#end_date ⇒ Time
The last day (in Unix time) that you want to obtain domain deliverability metrics for.
-
#start_date ⇒ Time
The first day (in Unix time) that you want to obtain domain deliverability metrics for.
Instance Attribute Details
#domain ⇒ String
The domain that you want to obtain deliverability metrics for.
1553 1554 1555 1556 1557 1558 1559 |
# File 'lib/aws-sdk-pinpointemail/types.rb', line 1553 class GetDomainStatisticsReportRequest < Struct.new( :domain, :start_date, :end_date) SENSITIVE = [] include Aws::Structure end |
#end_date ⇒ Time
The last day (in Unix time) that you want to obtain domain deliverability metrics for. The ‘EndDate` that you specify has to be less than or equal to 30 days after the `StartDate`.
1553 1554 1555 1556 1557 1558 1559 |
# File 'lib/aws-sdk-pinpointemail/types.rb', line 1553 class GetDomainStatisticsReportRequest < Struct.new( :domain, :start_date, :end_date) SENSITIVE = [] include Aws::Structure end |
#start_date ⇒ Time
The first day (in Unix time) that you want to obtain domain deliverability metrics for.
1553 1554 1555 1556 1557 1558 1559 |
# File 'lib/aws-sdk-pinpointemail/types.rb', line 1553 class GetDomainStatisticsReportRequest < Struct.new( :domain, :start_date, :end_date) SENSITIVE = [] include Aws::Structure end |