aws-sdk-pinpointemail 1.9.0 → 1.10.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -252,7 +252,7 @@ module Aws::PinpointEmail
252
252
  # data as a hash:
253
253
  #
254
254
  # {
255
- # configuration_set_name: "ConfigurationSetName",
255
+ # configuration_set_name: "ConfigurationSetName", # required
256
256
  # tracking_options: {
257
257
  # custom_redirect_domain: "CustomRedirectDomain", # required
258
258
  # },
@@ -300,8 +300,8 @@ module Aws::PinpointEmail
300
300
  # @return [Types::SendingOptions]
301
301
  #
302
302
  # @!attribute [rw] tags
303
- # An object that defines the tags (keys and values) that you want to
304
- # associate with the configuration set.
303
+ # An array of objects that define the tags (keys and values) that you
304
+ # want to associate with the configuration set.
305
305
  # @return [Array<Types::Tag>]
306
306
  #
307
307
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/CreateConfigurationSetRequest AWS API Documentation
@@ -423,8 +423,8 @@ module Aws::PinpointEmail
423
423
  # @return [Types::EmailContent]
424
424
  #
425
425
  # @!attribute [rw] tags
426
- # An object that defines the tags (keys and values) that you want to
427
- # associate with the predictive inbox placement test.
426
+ # An array of objects that define the tags (keys and values) that you
427
+ # want to associate with the predictive inbox placement test.
428
428
  # @return [Array<Types::Tag>]
429
429
  #
430
430
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/CreateDeliverabilityTestReportRequest AWS API Documentation
@@ -482,8 +482,8 @@ module Aws::PinpointEmail
482
482
  # @return [String]
483
483
  #
484
484
  # @!attribute [rw] tags
485
- # An object that defines the tags (keys and values) that you want to
486
- # associate with the email identity.
485
+ # An array of objects that define the tags (keys and values) that you
486
+ # want to associate with the email identity.
487
487
  # @return [Array<Types::Tag>]
488
488
  #
489
489
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/CreateEmailIdentityRequest AWS API Documentation
@@ -545,7 +545,7 @@ module Aws::PinpointEmail
545
545
  # @return [Types::VolumeStatistics]
546
546
  #
547
547
  # @!attribute [rw] domain_isp_placements
548
- # An object that contains inbox placement metrics for a specifid day
548
+ # An object that contains inbox placement metrics for a specified day
549
549
  # in the analysis period, broken out by the recipient's email
550
550
  # provider.
551
551
  # @return [Array<Types::DomainIspPlacement>]
@@ -874,6 +874,152 @@ module Aws::PinpointEmail
874
874
  include Aws::Structure
875
875
  end
876
876
 
877
+ # An object that contains the deliverability data for a specific
878
+ # campaign. This data is available for a campaign only if the campaign
879
+ # sent email by using a domain that the Deliverability dashboard is
880
+ # enabled for (`PutDeliverabilityDashboardOption` operation).
881
+ #
882
+ # @!attribute [rw] campaign_id
883
+ # The unique identifier for the campaign. Amazon Pinpoint
884
+ # automatically generates and assigns this identifier to a campaign.
885
+ # This value is not the same as the campaign identifier that Amazon
886
+ # Pinpoint assigns to campaigns that you create and manage by using
887
+ # the Amazon Pinpoint API or the Amazon Pinpoint console.
888
+ # @return [String]
889
+ #
890
+ # @!attribute [rw] image_url
891
+ # The URL of an image that contains a snapshot of the email message
892
+ # that was sent.
893
+ # @return [String]
894
+ #
895
+ # @!attribute [rw] subject
896
+ # The subject line, or title, of the email message.
897
+ # @return [String]
898
+ #
899
+ # @!attribute [rw] from_address
900
+ # The verified email address that the email message was sent from.
901
+ # @return [String]
902
+ #
903
+ # @!attribute [rw] sending_ips
904
+ # The IP addresses that were used to send the email message.
905
+ # @return [Array<String>]
906
+ #
907
+ # @!attribute [rw] first_seen_date_time
908
+ # The first time, in Unix time format, when the email message was
909
+ # delivered to any recipient's inbox. This value can help you
910
+ # determine how long it took for a campaign to deliver an email
911
+ # message.
912
+ # @return [Time]
913
+ #
914
+ # @!attribute [rw] last_seen_date_time
915
+ # The last time, in Unix time format, when the email message was
916
+ # delivered to any recipient's inbox. This value can help you
917
+ # determine how long it took for a campaign to deliver an email
918
+ # message.
919
+ # @return [Time]
920
+ #
921
+ # @!attribute [rw] inbox_count
922
+ # The number of email messages that were delivered to recipients’
923
+ # inboxes.
924
+ # @return [Integer]
925
+ #
926
+ # @!attribute [rw] spam_count
927
+ # The number of email messages that were delivered to recipients'
928
+ # spam or junk mail folders.
929
+ # @return [Integer]
930
+ #
931
+ # @!attribute [rw] read_rate
932
+ # The percentage of email messages that were opened by recipients. Due
933
+ # to technical limitations, this value only includes recipients who
934
+ # opened the message by using an email client that supports images.
935
+ # @return [Float]
936
+ #
937
+ # @!attribute [rw] delete_rate
938
+ # The percentage of email messages that were deleted by recipients,
939
+ # without being opened first. Due to technical limitations, this value
940
+ # only includes recipients who opened the message by using an email
941
+ # client that supports images.
942
+ # @return [Float]
943
+ #
944
+ # @!attribute [rw] read_delete_rate
945
+ # The percentage of email messages that were opened and then deleted
946
+ # by recipients. Due to technical limitations, this value only
947
+ # includes recipients who opened the message by using an email client
948
+ # that supports images.
949
+ # @return [Float]
950
+ #
951
+ # @!attribute [rw] projected_volume
952
+ # The projected number of recipients that the email message was sent
953
+ # to.
954
+ # @return [Integer]
955
+ #
956
+ # @!attribute [rw] esps
957
+ # The major email providers who handled the email message.
958
+ # @return [Array<String>]
959
+ #
960
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/DomainDeliverabilityCampaign AWS API Documentation
961
+ #
962
+ class DomainDeliverabilityCampaign < Struct.new(
963
+ :campaign_id,
964
+ :image_url,
965
+ :subject,
966
+ :from_address,
967
+ :sending_ips,
968
+ :first_seen_date_time,
969
+ :last_seen_date_time,
970
+ :inbox_count,
971
+ :spam_count,
972
+ :read_rate,
973
+ :delete_rate,
974
+ :read_delete_rate,
975
+ :projected_volume,
976
+ :esps)
977
+ include Aws::Structure
978
+ end
979
+
980
+ # An object that contains information about the Deliverability dashboard
981
+ # subscription for a verified domain that you use to send email and
982
+ # currently has an active Deliverability dashboard subscription. If a
983
+ # Deliverability dashboard subscription is active for a domain, you gain
984
+ # access to reputation, inbox placement, and other metrics for the
985
+ # domain.
986
+ #
987
+ # @note When making an API call, you may pass DomainDeliverabilityTrackingOption
988
+ # data as a hash:
989
+ #
990
+ # {
991
+ # domain: "Domain",
992
+ # subscription_start_date: Time.now,
993
+ # inbox_placement_tracking_option: {
994
+ # global: false,
995
+ # tracked_isps: ["IspName"],
996
+ # },
997
+ # }
998
+ #
999
+ # @!attribute [rw] domain
1000
+ # A verified domain that’s associated with your AWS account and
1001
+ # currently has an active Deliverability dashboard subscription.
1002
+ # @return [String]
1003
+ #
1004
+ # @!attribute [rw] subscription_start_date
1005
+ # The date, in Unix time format, when you enabled the Deliverability
1006
+ # dashboard for the domain.
1007
+ # @return [Time]
1008
+ #
1009
+ # @!attribute [rw] inbox_placement_tracking_option
1010
+ # An object that contains information about the inbox placement data
1011
+ # settings for the domain.
1012
+ # @return [Types::InboxPlacementTrackingOption]
1013
+ #
1014
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/DomainDeliverabilityTrackingOption AWS API Documentation
1015
+ #
1016
+ class DomainDeliverabilityTrackingOption < Struct.new(
1017
+ :domain,
1018
+ :subscription_start_date,
1019
+ :inbox_placement_tracking_option)
1020
+ include Aws::Structure
1021
+ end
1022
+
877
1023
  # An object that contains inbox placement data for email sent from one
878
1024
  # of your email domains to a specific email provider.
879
1025
  #
@@ -1333,6 +1479,11 @@ module Aws::PinpointEmail
1333
1479
  # that you send using the configuration set.
1334
1480
  # @return [Types::SendingOptions]
1335
1481
  #
1482
+ # @!attribute [rw] tags
1483
+ # An array of objects that define the tags (keys and values) that are
1484
+ # associated with the configuration set.
1485
+ # @return [Array<Types::Tag>]
1486
+ #
1336
1487
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/GetConfigurationSetResponse AWS API Documentation
1337
1488
  #
1338
1489
  class GetConfigurationSetResponse < Struct.new(
@@ -1340,7 +1491,8 @@ module Aws::PinpointEmail
1340
1491
  :tracking_options,
1341
1492
  :delivery_options,
1342
1493
  :reputation_options,
1343
- :sending_options)
1494
+ :sending_options,
1495
+ :tags)
1344
1496
  include Aws::Structure
1345
1497
  end
1346
1498
 
@@ -1441,17 +1593,22 @@ module Aws::PinpointEmail
1441
1593
  include Aws::Structure
1442
1594
  end
1443
1595
 
1444
- # A request to retrieve the status of the Deliverability dashboard for
1445
- # your account. When the Deliverability dashboard is enabled, you gain
1446
- # access to reputation metrics for the domains that you use to send
1447
- # email using Amazon Pinpoint. You also gain the ability to perform
1448
- # predictive inbox placement tests.
1596
+ # Retrieve information about the status of the Deliverability dashboard
1597
+ # for your Amazon Pinpoint account. When the Deliverability dashboard is
1598
+ # enabled, you gain access to reputation, deliverability, and other
1599
+ # metrics for the domains that you use to send email using Amazon
1600
+ # Pinpoint. You also gain the ability to perform predictive inbox
1601
+ # placement tests.
1602
+ #
1603
+ # When you use the Deliverability dashboard, you pay a monthly
1604
+ # subscription charge, in addition to any other fees that you accrue by
1605
+ # using Amazon Pinpoint. For more information about the features and
1606
+ # cost of a Deliverability dashboard subscription, see [Amazon Pinpoint
1607
+ # Pricing][1].
1608
+ #
1449
1609
  #
1450
- # When you use the Deliverability dashboard, you pay a monthly charge of
1451
- # USD$1,250.00, in addition to any other fees that you accrue by using
1452
- # Amazon Pinpoint. If you enable the Deliverability dashboard after the
1453
- # first day of a calendar month, AWS prorates the monthly charge based
1454
- # on how many days have elapsed in the current calendar month.
1610
+ #
1611
+ # [1]: http://aws.amazon.com/pinpoint/pricing/
1455
1612
  #
1456
1613
  # @api private
1457
1614
  #
@@ -1463,14 +1620,47 @@ module Aws::PinpointEmail
1463
1620
  # your Amazon Pinpoint account.
1464
1621
  #
1465
1622
  # @!attribute [rw] dashboard_enabled
1466
- # Indicates whether the Deliverability dashboard is enabled. If the
1467
- # value is `true`, then the dashboard is enabled.
1623
+ # Specifies whether the Deliverability dashboard is enabled for your
1624
+ # Amazon Pinpoint account. If this value is `true`, the dashboard is
1625
+ # enabled.
1468
1626
  # @return [Boolean]
1469
1627
  #
1628
+ # @!attribute [rw] subscription_expiry_date
1629
+ # The date, in Unix time format, when your current subscription to the
1630
+ # Deliverability dashboard is scheduled to expire, if your
1631
+ # subscription is scheduled to expire at the end of the current
1632
+ # calendar month. This value is null if you have an active
1633
+ # subscription that isn’t due to expire at the end of the month.
1634
+ # @return [Time]
1635
+ #
1636
+ # @!attribute [rw] account_status
1637
+ # The current status of your Deliverability dashboard subscription. If
1638
+ # this value is `PENDING_EXPIRATION`, your subscription is scheduled
1639
+ # to expire at the end of the current calendar month.
1640
+ # @return [String]
1641
+ #
1642
+ # @!attribute [rw] active_subscribed_domains
1643
+ # An array of objects, one for each verified domain that you use to
1644
+ # send email and currently has an active Deliverability dashboard
1645
+ # subscription that isn’t scheduled to expire at the end of the
1646
+ # current calendar month.
1647
+ # @return [Array<Types::DomainDeliverabilityTrackingOption>]
1648
+ #
1649
+ # @!attribute [rw] pending_expiration_subscribed_domains
1650
+ # An array of objects, one for each verified domain that you use to
1651
+ # send email and currently has an active Deliverability dashboard
1652
+ # subscription that's scheduled to expire at the end of the current
1653
+ # calendar month.
1654
+ # @return [Array<Types::DomainDeliverabilityTrackingOption>]
1655
+ #
1470
1656
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/GetDeliverabilityDashboardOptionsResponse AWS API Documentation
1471
1657
  #
1472
1658
  class GetDeliverabilityDashboardOptionsResponse < Struct.new(
1473
- :dashboard_enabled)
1659
+ :dashboard_enabled,
1660
+ :subscription_expiry_date,
1661
+ :account_status,
1662
+ :active_subscribed_domains,
1663
+ :pending_expiration_subscribed_domains)
1474
1664
  include Aws::Structure
1475
1665
  end
1476
1666
 
@@ -1519,13 +1709,62 @@ module Aws::PinpointEmail
1519
1709
  # this predictive inbox placement test.
1520
1710
  # @return [String]
1521
1711
  #
1712
+ # @!attribute [rw] tags
1713
+ # An array of objects that define the tags (keys and values) that are
1714
+ # associated with the predictive inbox placement test.
1715
+ # @return [Array<Types::Tag>]
1716
+ #
1522
1717
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/GetDeliverabilityTestReportResponse AWS API Documentation
1523
1718
  #
1524
1719
  class GetDeliverabilityTestReportResponse < Struct.new(
1525
1720
  :deliverability_test_report,
1526
1721
  :overall_placement,
1527
1722
  :isp_placements,
1528
- :message)
1723
+ :message,
1724
+ :tags)
1725
+ include Aws::Structure
1726
+ end
1727
+
1728
+ # Retrieve all the deliverability data for a specific campaign. This
1729
+ # data is available for a campaign only if the campaign sent email by
1730
+ # using a domain that the Deliverability dashboard is enabled for
1731
+ # (`PutDeliverabilityDashboardOption` operation).
1732
+ #
1733
+ # @note When making an API call, you may pass GetDomainDeliverabilityCampaignRequest
1734
+ # data as a hash:
1735
+ #
1736
+ # {
1737
+ # campaign_id: "CampaignId", # required
1738
+ # }
1739
+ #
1740
+ # @!attribute [rw] campaign_id
1741
+ # The unique identifier for the campaign. Amazon Pinpoint
1742
+ # automatically generates and assigns this identifier to a campaign.
1743
+ # This value is not the same as the campaign identifier that Amazon
1744
+ # Pinpoint assigns to campaigns that you create and manage by using
1745
+ # the Amazon Pinpoint API or the Amazon Pinpoint console.
1746
+ # @return [String]
1747
+ #
1748
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/GetDomainDeliverabilityCampaignRequest AWS API Documentation
1749
+ #
1750
+ class GetDomainDeliverabilityCampaignRequest < Struct.new(
1751
+ :campaign_id)
1752
+ include Aws::Structure
1753
+ end
1754
+
1755
+ # An object that contains all the deliverability data for a specific
1756
+ # campaign. This data is available for a campaign only if the campaign
1757
+ # sent email by using a domain that the Deliverability dashboard is
1758
+ # enabled for (`PutDeliverabilityDashboardOption` operation).
1759
+ #
1760
+ # @!attribute [rw] domain_deliverability_campaign
1761
+ # An object that contains the deliverability data for the campaign.
1762
+ # @return [Types::DomainDeliverabilityCampaign]
1763
+ #
1764
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/GetDomainDeliverabilityCampaignResponse AWS API Documentation
1765
+ #
1766
+ class GetDomainDeliverabilityCampaignResponse < Struct.new(
1767
+ :domain_deliverability_campaign)
1529
1768
  include Aws::Structure
1530
1769
  end
1531
1770
 
@@ -1653,6 +1892,11 @@ module Aws::PinpointEmail
1653
1892
  # for the email identity.
1654
1893
  # @return [Types::MailFromAttributes]
1655
1894
  #
1895
+ # @!attribute [rw] tags
1896
+ # An array of objects that define the tags (keys and values) that are
1897
+ # associated with the email identity.
1898
+ # @return [Array<Types::Tag>]
1899
+ #
1656
1900
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/GetEmailIdentityResponse AWS API Documentation
1657
1901
  #
1658
1902
  class GetEmailIdentityResponse < Struct.new(
@@ -1660,7 +1904,8 @@ module Aws::PinpointEmail
1660
1904
  :feedback_forwarding_status,
1661
1905
  :verified_for_sending_status,
1662
1906
  :dkim_attributes,
1663
- :mail_from_attributes)
1907
+ :mail_from_attributes,
1908
+ :tags)
1664
1909
  include Aws::Structure
1665
1910
  end
1666
1911
 
@@ -1700,6 +1945,38 @@ module Aws::PinpointEmail
1700
1945
  include Aws::Structure
1701
1946
  end
1702
1947
 
1948
+ # An object that contains information about the inbox placement data
1949
+ # settings for a verified domain that’s associated with your AWS
1950
+ # account. This data is available only if you enabled the Deliverability
1951
+ # dashboard for the domain (`PutDeliverabilityDashboardOption`
1952
+ # operation).
1953
+ #
1954
+ # @note When making an API call, you may pass InboxPlacementTrackingOption
1955
+ # data as a hash:
1956
+ #
1957
+ # {
1958
+ # global: false,
1959
+ # tracked_isps: ["IspName"],
1960
+ # }
1961
+ #
1962
+ # @!attribute [rw] global
1963
+ # Specifies whether inbox placement data is being tracked for the
1964
+ # domain.
1965
+ # @return [Boolean]
1966
+ #
1967
+ # @!attribute [rw] tracked_isps
1968
+ # An array of strings, one for each major email provider that the
1969
+ # inbox placement data applies to.
1970
+ # @return [Array<String>]
1971
+ #
1972
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/InboxPlacementTrackingOption AWS API Documentation
1973
+ #
1974
+ class InboxPlacementTrackingOption < Struct.new(
1975
+ :global,
1976
+ :tracked_isps)
1977
+ include Aws::Structure
1978
+ end
1979
+
1703
1980
  # An object that describes how email sent during the predictive inbox
1704
1981
  # placement test was handled by a certain email provider.
1705
1982
  #
@@ -1919,6 +2196,88 @@ module Aws::PinpointEmail
1919
2196
  include Aws::Structure
1920
2197
  end
1921
2198
 
2199
+ # Retrieve deliverability data for all the campaigns that used a
2200
+ # specific domain to send email during a specified time range. This data
2201
+ # is available for a domain only if you enabled the Deliverability
2202
+ # dashboard (`PutDeliverabilityDashboardOption` operation) for the
2203
+ # domain.
2204
+ #
2205
+ # @note When making an API call, you may pass ListDomainDeliverabilityCampaignsRequest
2206
+ # data as a hash:
2207
+ #
2208
+ # {
2209
+ # start_date: Time.now, # required
2210
+ # end_date: Time.now, # required
2211
+ # subscribed_domain: "Domain", # required
2212
+ # next_token: "NextToken",
2213
+ # page_size: 1,
2214
+ # }
2215
+ #
2216
+ # @!attribute [rw] start_date
2217
+ # The first day, in Unix time format, that you want to obtain
2218
+ # deliverability data for.
2219
+ # @return [Time]
2220
+ #
2221
+ # @!attribute [rw] end_date
2222
+ # The last day, in Unix time format, that you want to obtain
2223
+ # deliverability data for. This value has to be less than or equal to
2224
+ # 30 days after the value of the `StartDate` parameter.
2225
+ # @return [Time]
2226
+ #
2227
+ # @!attribute [rw] subscribed_domain
2228
+ # The domain to obtain deliverability data for.
2229
+ # @return [String]
2230
+ #
2231
+ # @!attribute [rw] next_token
2232
+ # A token that’s returned from a previous call to the
2233
+ # `ListDomainDeliverabilityCampaigns` operation. This token indicates
2234
+ # the position of a campaign in the list of campaigns.
2235
+ # @return [String]
2236
+ #
2237
+ # @!attribute [rw] page_size
2238
+ # The maximum number of results to include in response to a single
2239
+ # call to the `ListDomainDeliverabilityCampaigns` operation. If the
2240
+ # number of results is larger than the number that you specify in this
2241
+ # parameter, the response includes a `NextToken` element, which you
2242
+ # can use to obtain additional results.
2243
+ # @return [Integer]
2244
+ #
2245
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/ListDomainDeliverabilityCampaignsRequest AWS API Documentation
2246
+ #
2247
+ class ListDomainDeliverabilityCampaignsRequest < Struct.new(
2248
+ :start_date,
2249
+ :end_date,
2250
+ :subscribed_domain,
2251
+ :next_token,
2252
+ :page_size)
2253
+ include Aws::Structure
2254
+ end
2255
+
2256
+ # An array of objects that provide deliverability data for all the
2257
+ # campaigns that used a specific domain to send email during a specified
2258
+ # time range. This data is available for a domain only if you enabled
2259
+ # the Deliverability dashboard (`PutDeliverabilityDashboardOption`
2260
+ # operation) for the domain.
2261
+ #
2262
+ # @!attribute [rw] domain_deliverability_campaigns
2263
+ # An array of responses, one for each campaign that used the domain to
2264
+ # send email during the specified time range.
2265
+ # @return [Array<Types::DomainDeliverabilityCampaign>]
2266
+ #
2267
+ # @!attribute [rw] next_token
2268
+ # A token that’s returned from a previous call to the
2269
+ # `ListDomainDeliverabilityCampaigns` operation. This token indicates
2270
+ # the position of the campaign in the list of campaigns.
2271
+ # @return [String]
2272
+ #
2273
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/ListDomainDeliverabilityCampaignsResponse AWS API Documentation
2274
+ #
2275
+ class ListDomainDeliverabilityCampaignsResponse < Struct.new(
2276
+ :domain_deliverability_campaigns,
2277
+ :next_token)
2278
+ include Aws::Structure
2279
+ end
2280
+
1922
2281
  # A request to list all of the email identities associated with your
1923
2282
  # Amazon Pinpoint account. This list includes identities that you've
1924
2283
  # already verified, identities that are unverified, and identities that
@@ -2514,34 +2873,55 @@ module Aws::PinpointEmail
2514
2873
  #
2515
2874
  class PutDedicatedIpWarmupAttributesResponse < Aws::EmptyStructure; end
2516
2875
 
2517
- # A request to enable or disable the Deliverability dashboard. When you
2518
- # enable the Deliverability dashboard, you gain access to reputation
2519
- # metrics for the domains that you use to send email using Amazon
2520
- # Pinpoint. You also gain the ability to perform predictive inbox
2521
- # placement tests.
2876
+ # Enable or disable the Deliverability dashboard for your Amazon
2877
+ # Pinpoint account. When you enable the Deliverability dashboard, you
2878
+ # gain access to reputation, deliverability, and other metrics for the
2879
+ # domains that you use to send email using Amazon Pinpoint. You also
2880
+ # gain the ability to perform predictive inbox placement tests.
2881
+ #
2882
+ # When you use the Deliverability dashboard, you pay a monthly
2883
+ # subscription charge, in addition to any other fees that you accrue by
2884
+ # using Amazon Pinpoint. For more information about the features and
2885
+ # cost of a Deliverability dashboard subscription, see [Amazon Pinpoint
2886
+ # Pricing][1].
2887
+ #
2888
+ #
2522
2889
  #
2523
- # When you use the Deliverability dashboard, you pay a monthly charge of
2524
- # USD$1,250.00, in addition to any other fees that you accrue by using
2525
- # Amazon Pinpoint. If you enable the Deliverability dashboard after the
2526
- # first day of a calendar month, we prorate the monthly charge based on
2527
- # how many days have elapsed in the current calendar month.
2890
+ # [1]: http://aws.amazon.com/pinpoint/pricing/
2528
2891
  #
2529
2892
  # @note When making an API call, you may pass PutDeliverabilityDashboardOptionRequest
2530
2893
  # data as a hash:
2531
2894
  #
2532
2895
  # {
2533
2896
  # dashboard_enabled: false, # required
2897
+ # subscribed_domains: [
2898
+ # {
2899
+ # domain: "Domain",
2900
+ # subscription_start_date: Time.now,
2901
+ # inbox_placement_tracking_option: {
2902
+ # global: false,
2903
+ # tracked_isps: ["IspName"],
2904
+ # },
2905
+ # },
2906
+ # ],
2534
2907
  # }
2535
2908
  #
2536
2909
  # @!attribute [rw] dashboard_enabled
2537
- # Indicates whether the Deliverability dashboard is enabled. If the
2538
- # value is `true`, then the dashboard is enabled.
2910
+ # Specifies whether to enable the Deliverability dashboard for your
2911
+ # Amazon Pinpoint account. To enable the dashboard, set this value to
2912
+ # `true`.
2539
2913
  # @return [Boolean]
2540
2914
  #
2915
+ # @!attribute [rw] subscribed_domains
2916
+ # An array of objects, one for each verified domain that you use to
2917
+ # send email and enabled the Deliverability dashboard for.
2918
+ # @return [Array<Types::DomainDeliverabilityTrackingOption>]
2919
+ #
2541
2920
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/PutDeliverabilityDashboardOptionRequest AWS API Documentation
2542
2921
  #
2543
2922
  class PutDeliverabilityDashboardOptionRequest < Struct.new(
2544
- :dashboard_enabled)
2923
+ :dashboard_enabled,
2924
+ :subscribed_domains)
2545
2925
  include Aws::Structure
2546
2926
  end
2547
2927
 
@@ -2979,16 +3359,11 @@ module Aws::PinpointEmail
2979
3359
  # Each tag consists of a required *tag key* and an associated *tag
2980
3360
  # value*, both of which you define. A tag key is a general label that
2981
3361
  # acts as a category for a more specific tag value. A tag value acts as
2982
- # a descriptor within a tag key. For example, if you have two versions
2983
- # of an Amazon Pinpoint project, one for internal testing and another
2984
- # for external use, you might assign a `Stack` tag key to both projects.
2985
- # The value of the `Stack` tag key might be `Test` for one project
2986
- # and `Production` for the other project.
2987
- #
2988
- # A tag key can contain as many as 128 characters. A tag value can
2989
- # contain as many as 256 characters. The characters can be Unicode
2990
- # letters, digits, white space, or one of the following symbols: \_ . :
2991
- # / = + -. The following additional restrictions apply to tags:
3362
+ # a descriptor within a tag key. A tag key can contain as many as 128
3363
+ # characters. A tag value can contain as many as 256 characters. The
3364
+ # characters can be Unicode letters, digits, white space, or one of the
3365
+ # following symbols: \_ . : / = + -. The following additional
3366
+ # restrictions apply to tags:
2992
3367
  #
2993
3368
  # * Tag keys and values are case sensitive.
2994
3369
  #