Class: Aws::PinpointEmail::Types::DomainDeliverabilityTrackingOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointEmail::Types::DomainDeliverabilityTrackingOption
- Defined in:
- gems/aws-sdk-pinpointemail/lib/aws-sdk-pinpointemail/types.rb
Overview
When making an API call, you may pass DomainDeliverabilityTrackingOption data as a hash:
{
domain: "Domain",
subscription_start_date: Time.now,
inbox_placement_tracking_option: {
global: false,
tracked_isps: ["IspName"],
},
}
An object that contains information about the Deliverability dashboard subscription for a verified domain that you use to send email and currently has an active Deliverability dashboard subscription. If a Deliverability dashboard subscription is active for a domain, you gain access to reputation, inbox placement, and other metrics for the domain.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
A verified domain that’s associated with your AWS account and currently has an active Deliverability dashboard subscription.
-
#inbox_placement_tracking_option ⇒ Types::InboxPlacementTrackingOption
An object that contains information about the inbox placement data settings for the domain.
-
#subscription_start_date ⇒ Time
The date, in Unix time format, when you enabled the Deliverability dashboard for the domain.
Instance Attribute Details
#domain ⇒ String
A verified domain that’s associated with your AWS account and currently has an active Deliverability dashboard subscription.
1081 1082 1083 1084 1085 1086 1087 |
# File 'gems/aws-sdk-pinpointemail/lib/aws-sdk-pinpointemail/types.rb', line 1081 class DomainDeliverabilityTrackingOption < Struct.new( :domain, :subscription_start_date, :inbox_placement_tracking_option) SENSITIVE = [] include Aws::Structure end |
#inbox_placement_tracking_option ⇒ Types::InboxPlacementTrackingOption
An object that contains information about the inbox placement data settings for the domain.
1081 1082 1083 1084 1085 1086 1087 |
# File 'gems/aws-sdk-pinpointemail/lib/aws-sdk-pinpointemail/types.rb', line 1081 class DomainDeliverabilityTrackingOption < Struct.new( :domain, :subscription_start_date, :inbox_placement_tracking_option) SENSITIVE = [] include Aws::Structure end |
#subscription_start_date ⇒ Time
The date, in Unix time format, when you enabled the Deliverability dashboard for the domain.
1081 1082 1083 1084 1085 1086 1087 |
# File 'gems/aws-sdk-pinpointemail/lib/aws-sdk-pinpointemail/types.rb', line 1081 class DomainDeliverabilityTrackingOption < Struct.new( :domain, :subscription_start_date, :inbox_placement_tracking_option) SENSITIVE = [] include Aws::Structure end |