# frozen_string_literal: true # WARNING ABOUT GENERATED CODE # # This file is generated. See the contributing guide for more information: # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md # # WARNING ABOUT GENERATED CODE module Aws::SESV2 module Types # An object that contains information about your account details. # # @!attribute [rw] mail_type # The type of email your account is sending. The mail type can be one # of the following: # # * `MARKETING` – Most of your sending traffic is to keep your # customers informed of your latest offering. # # * `TRANSACTIONAL` – Most of your sending traffic is to communicate # during a transaction with a customer. # @return [String] # # @!attribute [rw] website_url # The URL of your website. This information helps us better understand # the type of content that you plan to send. # @return [String] # # @!attribute [rw] contact_language # The language you would prefer for the case. The contact language can # be one of `ENGLISH` or `JAPANESE`. # @return [String] # # @!attribute [rw] use_case_description # A description of the types of email that you plan to send. # @return [String] # # @!attribute [rw] additional_contact_email_addresses # Additional email addresses where updates are sent about your account # review process. # @return [Array] # # @!attribute [rw] review_details # Information about the review of the latest details you submitted. # @return [Types::ReviewDetails] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/AccountDetails AWS API Documentation # class AccountDetails < Struct.new( :mail_type, :website_url, :contact_language, :use_case_description, :additional_contact_email_addresses, :review_details) SENSITIVE = [:website_url, :use_case_description, :additional_contact_email_addresses] include Aws::Structure end # The message can't be sent because the account's ability to send # email has been permanently restricted. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/AccountSuspendedException AWS API Documentation # class AccountSuspendedException < Aws::EmptyStructure; end # The resource specified in your request already exists. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/AlreadyExistsException AWS API Documentation # class AlreadyExistsException < Aws::EmptyStructure; end # The input you provided is invalid. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/BadRequestException AWS API Documentation # class BadRequestException < Aws::EmptyStructure; end # Represents a single metric data query to include in a batch. # # @!attribute [rw] id # The query identifier. # @return [String] # # @!attribute [rw] namespace # The query namespace - e.g. `VDM` # @return [String] # # @!attribute [rw] metric # The queried metric. This can be one of the following: # # * `SEND` – Emails sent eligible for tracking in the VDM dashboard. # This excludes emails sent to the mailbox simulator and emails # addressed to more than one recipient. # # * `COMPLAINT` – Complaints received for your account. This excludes # complaints from the mailbox simulator, those originating from your # account-level suppression list (if enabled), and those for emails # addressed to more than one recipient # # * `PERMANENT_BOUNCE` – Permanent bounces - i.e. feedback received # for emails sent to non-existent mailboxes. Excludes bounces from # the mailbox simulator, those originating from your account-level # suppression list (if enabled), and those for emails addressed to # more than one recipient. # # * `TRANSIENT_BOUNCE` – Transient bounces - i.e. feedback received # for delivery failures excluding issues with non-existent # mailboxes. Excludes bounces from the mailbox simulator, and those # for emails addressed to more than one recipient. # # * `OPEN` – Unique open events for emails including open trackers. # Excludes opens for emails addressed to more than one recipient. # # * `CLICK` – Unique click events for emails including wrapped links. # Excludes clicks for emails addressed to more than one recipient. # # * `DELIVERY` – Successful deliveries for email sending attempts. # Excludes deliveries to the mailbox simulator and for emails # addressed to more than one recipient. # # * `DELIVERY_OPEN` – Successful deliveries for email sending # attempts. Excludes deliveries to the mailbox simulator, for emails # addressed to more than one recipient, and emails without open # trackers. # # * `DELIVERY_CLICK` – Successful deliveries for email sending # attempts. Excludes deliveries to the mailbox simulator, for emails # addressed to more than one recipient, and emails without click # trackers. # # * `DELIVERY_COMPLAINT` – Successful deliveries for email sending # attempts. Excludes deliveries to the mailbox simulator, for emails # addressed to more than one recipient, and emails addressed to # recipients hosted by ISPs with which Amazon SES does not have a # feedback loop agreement. # @return [String] # # @!attribute [rw] dimensions # An object that contains mapping between `MetricDimensionName` and # `MetricDimensionValue` to filter metrics by. # @return [Hash] # # @!attribute [rw] start_date # Represents the start date for the query interval. # @return [Time] # # @!attribute [rw] end_date # Represents the end date for the query interval. # @return [Time] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/BatchGetMetricDataQuery AWS API Documentation # class BatchGetMetricDataQuery < Struct.new( :id, :namespace, :metric, :dimensions, :start_date, :end_date) SENSITIVE = [] include Aws::Structure end # Represents a request to retrieve a batch of metric data. # # @!attribute [rw] queries # A list of queries for metrics to be retrieved. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/BatchGetMetricDataRequest AWS API Documentation # class BatchGetMetricDataRequest < Struct.new( :queries) SENSITIVE = [] include Aws::Structure end # Represents the result of processing your metric data batch request # # @!attribute [rw] results # A list of successfully retrieved `MetricDataResult`. # @return [Array] # # @!attribute [rw] errors # A list of `MetricDataError` encountered while processing your metric # data batch request. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/BatchGetMetricDataResponse AWS API Documentation # class BatchGetMetricDataResponse < Struct.new( :results, :errors) SENSITIVE = [] include Aws::Structure end # An object that contains information about a blacklisting event that # impacts one of the dedicated IP addresses that is associated with your # account. # # @!attribute [rw] rbl_name # The name of the blacklist that the IP address appears on. # @return [String] # # @!attribute [rw] listing_time # The time when the blacklisting event occurred. # @return [Time] # # @!attribute [rw] description # Additional information about the blacklisting event, as provided by # the blacklist maintainer. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/BlacklistEntry AWS API Documentation # class BlacklistEntry < Struct.new( :rbl_name, :listing_time, :description) SENSITIVE = [] include Aws::Structure end # Represents the body of the email message. # # @!attribute [rw] text # An object that represents the version of the message that is # displayed in email clients that don't support HTML, or clients # where the recipient has disabled HTML rendering. # @return [Types::Content] # # @!attribute [rw] html # An object that represents the version of the message that is # displayed in email clients that support HTML. HTML messages can # include formatted text, hyperlinks, images, and more. # @return [Types::Content] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/Body AWS API Documentation # class Body < Struct.new( :text, :html) SENSITIVE = [] include Aws::Structure end # An object that contains the body of the message. You can specify a # template message. # # @!attribute [rw] template # The template to use for the bulk email message. # @return [Types::Template] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/BulkEmailContent AWS API Documentation # class BulkEmailContent < Struct.new( :template) SENSITIVE = [] include Aws::Structure end # @!attribute [rw] destination # Represents the destination of the message, consisting of To:, CC:, # and BCC: fields. # # Amazon SES does not support the SMTPUTF8 extension, as described in # [RFC6531][1]. For this reason, the local part of a destination email # address (the part of the email address that precedes the @ sign) may # only contain [7-bit ASCII characters][2]. If the domain part of an # address (the part after the @ sign) contains non-ASCII characters, # they must be encoded using Punycode, as described in [RFC3492][3]. # # # # # # [1]: https://tools.ietf.org/html/rfc6531 # [2]: https://en.wikipedia.org/wiki/Email_address#Local-part # [3]: https://tools.ietf.org/html/rfc3492.html # @return [Types::Destination] # # @!attribute [rw] replacement_tags # A list of tags, in the form of name/value pairs, to apply to an # email that you send using the `SendBulkTemplatedEmail` operation. # Tags correspond to characteristics of the email that you define, so # that you can publish email sending events. # @return [Array] # # @!attribute [rw] replacement_email_content # The `ReplacementEmailContent` associated with a `BulkEmailEntry`. # @return [Types::ReplacementEmailContent] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/BulkEmailEntry AWS API Documentation # class BulkEmailEntry < Struct.new( :destination, :replacement_tags, :replacement_email_content) SENSITIVE = [] include Aws::Structure end # The result of the `SendBulkEmail` operation of each specified # `BulkEmailEntry`. # # @!attribute [rw] status # The status of a message sent using the `SendBulkTemplatedEmail` # operation. # # Possible values for this parameter include: # # * SUCCESS: Amazon SES accepted the message, and will attempt to # deliver it to the recipients. # # * MESSAGE\_REJECTED: The message was rejected because it contained a # virus. # # * MAIL\_FROM\_DOMAIN\_NOT\_VERIFIED: The sender's email address or # domain was not verified. # # * CONFIGURATION\_SET\_DOES\_NOT\_EXIST: The configuration set you # specified does not exist. # # * TEMPLATE\_DOES\_NOT\_EXIST: The template you specified does not # exist. # # * ACCOUNT\_SUSPENDED: Your account has been shut down because of # issues related to your email sending practices. # # * ACCOUNT\_THROTTLED: The number of emails you can send has been # reduced because your account has exceeded its allocated sending # limit. # # * ACCOUNT\_DAILY\_QUOTA\_EXCEEDED: You have reached or exceeded the # maximum number of emails you can send from your account in a # 24-hour period. # # * INVALID\_SENDING\_POOL\_NAME: The configuration set you specified # refers to an IP pool that does not exist. # # * ACCOUNT\_SENDING\_PAUSED: Email sending for the Amazon SES account # was disabled using the [UpdateAccountSendingEnabled][1] operation. # # * CONFIGURATION\_SET\_SENDING\_PAUSED: Email sending for this # configuration set was disabled using the # [UpdateConfigurationSetSendingEnabled][2] operation. # # * INVALID\_PARAMETER\_VALUE: One or more of the parameters you # specified when calling this operation was invalid. See the error # message for additional information. # # * TRANSIENT\_FAILURE: Amazon SES was unable to process your request # because of a temporary issue. # # * FAILED: Amazon SES was unable to process your request. See the # error message for additional information. # # # # [1]: https://docs.aws.amazon.com/ses/latest/APIReference/API_UpdateAccountSendingEnabled.html # [2]: https://docs.aws.amazon.com/ses/latest/APIReference/API_UpdateConfigurationSetSendingEnabled.html # @return [String] # # @!attribute [rw] error # A description of an error that prevented a message being sent using # the `SendBulkTemplatedEmail` operation. # @return [String] # # @!attribute [rw] message_id # The unique message identifier returned from the # `SendBulkTemplatedEmail` operation. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/BulkEmailEntryResult AWS API Documentation # class BulkEmailEntryResult < Struct.new( :status, :error, :message_id) SENSITIVE = [] include Aws::Structure end # An object that defines an Amazon CloudWatch destination for email # events. You can use Amazon CloudWatch to monitor and gain insights on # your email sending metrics. # # @!attribute [rw] dimension_configurations # An array of objects that define the dimensions to use when you send # email events to Amazon CloudWatch. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CloudWatchDestination AWS API Documentation # class CloudWatchDestination < Struct.new( :dimension_configurations) SENSITIVE = [] include Aws::Structure end # An object that defines the dimension configuration to use when you # send email events to Amazon CloudWatch. # # @!attribute [rw] dimension_name # The name of an Amazon CloudWatch dimension associated with an email # sending metric. The name has to meet the following criteria: # # * It can only contain ASCII letters (a–z, A–Z), numbers (0–9), # underscores (\_), or dashes (-). # # * It can contain no more than 256 characters. # @return [String] # # @!attribute [rw] dimension_value_source # The location where the Amazon SES API v2 finds the value of a # dimension to publish to Amazon CloudWatch. To use the message tags # that you specify using an `X-SES-MESSAGE-TAGS` header or a parameter # to the `SendEmail` or `SendRawEmail` API, choose `messageTag`. To # use your own email headers, choose `emailHeader`. To use link tags, # choose `linkTags`. # @return [String] # # @!attribute [rw] default_dimension_value # The default value of the dimension that is published to Amazon # CloudWatch if you don't provide the value of the dimension when you # send an email. This value has to meet the following criteria: # # * Can only contain ASCII letters (a–z, A–Z), numbers (0–9), # underscores (\_), or dashes (-), at signs (@), and periods (.). # # * It can contain no more than 256 characters. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CloudWatchDimensionConfiguration AWS API Documentation # class CloudWatchDimensionConfiguration < Struct.new( :dimension_name, :dimension_value_source, :default_dimension_value) SENSITIVE = [] include Aws::Structure end # The resource is being modified by another operation or thread. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ConcurrentModificationException AWS API Documentation # class ConcurrentModificationException < Aws::EmptyStructure; end # If there is already an ongoing account details update under review. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ConflictException AWS API Documentation # class ConflictException < Aws::EmptyStructure; end # A contact is the end-user who is receiving the email. # # @!attribute [rw] email_address # The contact's email address. # @return [String] # # @!attribute [rw] topic_preferences # The contact's preference for being opted-in to or opted-out of a # topic. # @return [Array] # # @!attribute [rw] topic_default_preferences # The default topic preferences applied to the contact. # @return [Array] # # @!attribute [rw] unsubscribe_all # A boolean value status noting if the contact is unsubscribed from # all contact list topics. # @return [Boolean] # # @!attribute [rw] last_updated_timestamp # A timestamp noting the last time the contact's information was # updated. # @return [Time] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/Contact AWS API Documentation # class Contact < Struct.new( :email_address, :topic_preferences, :topic_default_preferences, :unsubscribe_all, :last_updated_timestamp) SENSITIVE = [] include Aws::Structure end # A list that contains contacts that have subscribed to a particular # topic or topics. # # @!attribute [rw] contact_list_name # The name of the contact list. # @return [String] # # @!attribute [rw] last_updated_timestamp # A timestamp noting the last time the contact list was updated. # @return [Time] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ContactList AWS API Documentation # class ContactList < Struct.new( :contact_list_name, :last_updated_timestamp) SENSITIVE = [] include Aws::Structure end # An object that contains details about the action of a contact list. # # @!attribute [rw] contact_list_name # The name of the contact list. # @return [String] # # @!attribute [rw] contact_list_import_action # >The type of action to perform on the addresses. The following # are the possible values: # # * PUT: add the addresses to the contact list. If the record already # exists, it will override it with the new value. # # * DELETE: remove the addresses from the contact list. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ContactListDestination AWS API Documentation # class ContactListDestination < Struct.new( :contact_list_name, :contact_list_import_action) SENSITIVE = [] include Aws::Structure end # An object that represents the content of the email, and optionally a # character set specification. # # @!attribute [rw] data # The content of the message itself. # @return [String] # # @!attribute [rw] charset # The character set for the content. Because of the constraints of the # SMTP protocol, Amazon SES uses 7-bit ASCII by default. If the text # includes characters outside of the ASCII range, you have to specify # a character set. For example, you could specify `UTF-8`, # `ISO-8859-1`, or `Shift_JIS`. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/Content AWS API Documentation # class Content < Struct.new( :data, :charset) SENSITIVE = [] include Aws::Structure end # A request to add an event destination to a configuration set. # # @!attribute [rw] configuration_set_name # The name of the configuration set . # @return [String] # # @!attribute [rw] event_destination_name # A name that identifies the event destination within the # configuration set. # @return [String] # # @!attribute [rw] event_destination # An object that defines the event destination. # @return [Types::EventDestinationDefinition] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateConfigurationSetEventDestinationRequest AWS API Documentation # class CreateConfigurationSetEventDestinationRequest < Struct.new( :configuration_set_name, :event_destination_name, :event_destination) SENSITIVE = [] include Aws::Structure end # An HTTP 200 response if the request succeeds, or an error message if # the request fails. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateConfigurationSetEventDestinationResponse AWS API Documentation # class CreateConfigurationSetEventDestinationResponse < Aws::EmptyStructure; end # A request to create a configuration set. # # @!attribute [rw] configuration_set_name # The name of the configuration set. The name can contain up to 64 # alphanumeric characters, including letters, numbers, hyphens (-) and # underscores (\_) only. # @return [String] # # @!attribute [rw] tracking_options # An object that defines the open and click tracking options for # emails that you send using the configuration set. # @return [Types::TrackingOptions] # # @!attribute [rw] delivery_options # An object that defines the dedicated IP pool that is used to send # emails that you send using the configuration set. # @return [Types::DeliveryOptions] # # @!attribute [rw] reputation_options # An object that defines whether or not Amazon SES collects reputation # metrics for the emails that you send that use the configuration set. # @return [Types::ReputationOptions] # # @!attribute [rw] sending_options # An object that defines whether or not Amazon SES can send email that # you send using the configuration set. # @return [Types::SendingOptions] # # @!attribute [rw] tags # An array of objects that define the tags (keys and values) to # associate with the configuration set. # @return [Array] # # @!attribute [rw] suppression_options # An object that contains information about the suppression list # preferences for your account. # @return [Types::SuppressionOptions] # # @!attribute [rw] vdm_options # An object that defines the VDM options for emails that you send # using the configuration set. # @return [Types::VdmOptions] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateConfigurationSetRequest AWS API Documentation # class CreateConfigurationSetRequest < Struct.new( :configuration_set_name, :tracking_options, :delivery_options, :reputation_options, :sending_options, :tags, :suppression_options, :vdm_options) SENSITIVE = [] include Aws::Structure end # An HTTP 200 response if the request succeeds, or an error message if # the request fails. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateConfigurationSetResponse AWS API Documentation # class CreateConfigurationSetResponse < Aws::EmptyStructure; end # @!attribute [rw] contact_list_name # The name of the contact list. # @return [String] # # @!attribute [rw] topics # An interest group, theme, or label within a list. A contact list can # have multiple topics. # @return [Array] # # @!attribute [rw] description # A description of what the contact list is about. # @return [String] # # @!attribute [rw] tags # The tags associated with a contact list. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateContactListRequest AWS API Documentation # class CreateContactListRequest < Struct.new( :contact_list_name, :topics, :description, :tags) SENSITIVE = [] include Aws::Structure end # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateContactListResponse AWS API Documentation # class CreateContactListResponse < Aws::EmptyStructure; end # @!attribute [rw] contact_list_name # The name of the contact list to which the contact should be added. # @return [String] # # @!attribute [rw] email_address # The contact's email address. # @return [String] # # @!attribute [rw] topic_preferences # The contact's preferences for being opted-in to or opted-out of # topics. # @return [Array] # # @!attribute [rw] unsubscribe_all # A boolean value status noting if the contact is unsubscribed from # all contact list topics. # @return [Boolean] # # @!attribute [rw] attributes_data # The attribute data attached to a contact. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateContactRequest AWS API Documentation # class CreateContactRequest < Struct.new( :contact_list_name, :email_address, :topic_preferences, :unsubscribe_all, :attributes_data) SENSITIVE = [] include Aws::Structure end # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateContactResponse AWS API Documentation # class CreateContactResponse < Aws::EmptyStructure; end # Represents a request to create a custom verification email template. # # @!attribute [rw] template_name # The name of the custom verification email template. # @return [String] # # @!attribute [rw] from_email_address # The email address that the custom verification email is sent from. # @return [String] # # @!attribute [rw] template_subject # The subject line of the custom verification email. # @return [String] # # @!attribute [rw] template_content # The content of the custom verification email. The total size of the # email must be less than 10 MB. The message body may contain HTML, # with some limitations. For more information, see [Custom # verification email frequently asked questions][1] in the *Amazon SES # Developer Guide*. # # # # [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom-faq # @return [String] # # @!attribute [rw] success_redirection_url # The URL that the recipient of the verification email is sent to if # his or her address is successfully verified. # @return [String] # # @!attribute [rw] failure_redirection_url # The URL that the recipient of the verification email is sent to if # his or her address is not successfully verified. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateCustomVerificationEmailTemplateRequest AWS API Documentation # class CreateCustomVerificationEmailTemplateRequest < Struct.new( :template_name, :from_email_address, :template_subject, :template_content, :success_redirection_url, :failure_redirection_url) SENSITIVE = [] include Aws::Structure end # If the action is successful, the service sends back an HTTP 200 # response with an empty HTTP body. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateCustomVerificationEmailTemplateResponse AWS API Documentation # class CreateCustomVerificationEmailTemplateResponse < Aws::EmptyStructure; end # A request to create a new dedicated IP pool. # # @!attribute [rw] pool_name # The name of the dedicated IP pool. # @return [String] # # @!attribute [rw] tags # An object that defines the tags (keys and values) that you want to # associate with the pool. # @return [Array] # # @!attribute [rw] scaling_mode # The type of scaling mode. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateDedicatedIpPoolRequest AWS API Documentation # class CreateDedicatedIpPoolRequest < Struct.new( :pool_name, :tags, :scaling_mode) SENSITIVE = [] include Aws::Structure end # An HTTP 200 response if the request succeeds, or an error message if # the request fails. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateDedicatedIpPoolResponse AWS API Documentation # class CreateDedicatedIpPoolResponse < Aws::EmptyStructure; end # A request to perform a predictive inbox placement test. Predictive # inbox placement tests can help you predict how your messages will be # handled by various email providers around the world. When you perform # a predictive inbox placement test, you provide a sample message that # contains the content that you plan to send to your customers. We send # that message to special email addresses spread across several major # email providers around the world. The test takes about 24 hours to # complete. When the test is complete, you can use the # `GetDeliverabilityTestReport` operation to view the results of the # test. # # @!attribute [rw] report_name # A unique name that helps you to identify the predictive inbox # placement test when you retrieve the results. # @return [String] # # @!attribute [rw] from_email_address # The email address that the predictive inbox placement test email was # sent from. # @return [String] # # @!attribute [rw] content # The HTML body of the message that you sent when you performed the # predictive inbox placement test. # @return [Types::EmailContent] # # @!attribute [rw] tags # An array of objects that define the tags (keys and values) that you # want to associate with the predictive inbox placement test. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateDeliverabilityTestReportRequest AWS API Documentation # class CreateDeliverabilityTestReportRequest < Struct.new( :report_name, :from_email_address, :content, :tags) SENSITIVE = [] include Aws::Structure end # Information about the predictive inbox placement test that you # created. # # @!attribute [rw] report_id # A unique string that identifies the predictive inbox placement test. # @return [String] # # @!attribute [rw] deliverability_test_status # The status of the predictive inbox placement test. If the status is # `IN_PROGRESS`, then the predictive inbox placement test is currently # running. Predictive inbox placement tests are usually complete # within 24 hours of creating the test. If the status is `COMPLETE`, # then the test is finished, and you can use the # `GetDeliverabilityTestReport` to view the results of the test. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateDeliverabilityTestReportResponse AWS API Documentation # class CreateDeliverabilityTestReportResponse < Struct.new( :report_id, :deliverability_test_status) SENSITIVE = [] include Aws::Structure end # Represents a request to create a sending authorization policy for an # identity. Sending authorization is an Amazon SES feature that enables # you to authorize other senders to use your identities. For # information, see the [Amazon SES Developer Guide][1]. # # # # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-identity-owner-tasks-management.html # # @!attribute [rw] email_identity # The email identity. # @return [String] # # @!attribute [rw] policy_name # The name of the policy. # # The policy name cannot exceed 64 characters and can only include # alphanumeric characters, dashes, and underscores. # @return [String] # # @!attribute [rw] policy # The text of the policy in JSON format. The policy cannot exceed 4 # KB. # # For information about the syntax of sending authorization policies, # see the [Amazon SES Developer Guide][1]. # # # # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-policies.html # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateEmailIdentityPolicyRequest AWS API Documentation # class CreateEmailIdentityPolicyRequest < Struct.new( :email_identity, :policy_name, :policy) SENSITIVE = [] include Aws::Structure end # An HTTP 200 response if the request succeeds, or an error message if # the request fails. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateEmailIdentityPolicyResponse AWS API Documentation # class CreateEmailIdentityPolicyResponse < Aws::EmptyStructure; end # A request to begin the verification process for an email identity (an # email address or domain). # # @!attribute [rw] email_identity # The email address or domain to verify. # @return [String] # # @!attribute [rw] tags # An array of objects that define the tags (keys and values) to # associate with the email identity. # @return [Array] # # @!attribute [rw] dkim_signing_attributes # If your request includes this object, Amazon SES configures the # identity to use Bring Your Own DKIM (BYODKIM) for DKIM # authentication purposes, or, configures the key length to be used # for [Easy DKIM][1]. # # You can only specify this object if the email identity is a domain, # as opposed to an address. # # # # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html # @return [Types::DkimSigningAttributes] # # @!attribute [rw] configuration_set_name # The configuration set to use by default when sending from this # identity. Note that any configuration set defined in the email # sending request takes precedence. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateEmailIdentityRequest AWS API Documentation # class CreateEmailIdentityRequest < Struct.new( :email_identity, :tags, :dkim_signing_attributes, :configuration_set_name) SENSITIVE = [] include Aws::Structure end # If the email identity is a domain, this object contains information # about the DKIM verification status for the domain. # # If the email identity is an email address, this object is empty. # # @!attribute [rw] identity_type # The email identity type. Note: the `MANAGED_DOMAIN` identity type is # not supported. # @return [String] # # @!attribute [rw] verified_for_sending_status # Specifies whether or not the identity is verified. You can only send # email from verified email addresses or domains. For more information # about verifying identities, see the [Amazon Pinpoint User Guide][1]. # # # # [1]: https://docs.aws.amazon.com/pinpoint/latest/userguide/channels-email-manage-verify.html # @return [Boolean] # # @!attribute [rw] dkim_attributes # An object that contains information about the DKIM attributes for # the identity. # @return [Types::DkimAttributes] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateEmailIdentityResponse AWS API Documentation # class CreateEmailIdentityResponse < Struct.new( :identity_type, :verified_for_sending_status, :dkim_attributes) SENSITIVE = [] include Aws::Structure end # Represents a request to create an email template. For more # information, see the [Amazon SES Developer Guide][1]. # # # # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html # # @!attribute [rw] template_name # The name of the template. # @return [String] # # @!attribute [rw] template_content # The content of the email template, composed of a subject line, an # HTML part, and a text-only part. # @return [Types::EmailTemplateContent] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateEmailTemplateRequest AWS API Documentation # class CreateEmailTemplateRequest < Struct.new( :template_name, :template_content) SENSITIVE = [] include Aws::Structure end # If the action is successful, the service sends back an HTTP 200 # response with an empty HTTP body. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateEmailTemplateResponse AWS API Documentation # class CreateEmailTemplateResponse < Aws::EmptyStructure; end # Represents a request to create an import job from a data source for a # data destination. # # @!attribute [rw] import_destination # The destination for the import job. # @return [Types::ImportDestination] # # @!attribute [rw] import_data_source # The data source for the import job. # @return [Types::ImportDataSource] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateImportJobRequest AWS API Documentation # class CreateImportJobRequest < Struct.new( :import_destination, :import_data_source) SENSITIVE = [] include Aws::Structure end # An HTTP 200 response if the request succeeds, or an error message if # the request fails. # # @!attribute [rw] job_id # A string that represents the import job ID. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CreateImportJobResponse AWS API Documentation # class CreateImportJobResponse < Struct.new( :job_id) SENSITIVE = [] include Aws::Structure end # Contains information about a custom verification email template. # # @!attribute [rw] template_name # The name of the custom verification email template. # @return [String] # # @!attribute [rw] from_email_address # The email address that the custom verification email is sent from. # @return [String] # # @!attribute [rw] template_subject # The subject line of the custom verification email. # @return [String] # # @!attribute [rw] success_redirection_url # The URL that the recipient of the verification email is sent to if # his or her address is successfully verified. # @return [String] # # @!attribute [rw] failure_redirection_url # The URL that the recipient of the verification email is sent to if # his or her address is not successfully verified. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/CustomVerificationEmailTemplateMetadata AWS API Documentation # class CustomVerificationEmailTemplateMetadata < Struct.new( :template_name, :from_email_address, :template_subject, :success_redirection_url, :failure_redirection_url) SENSITIVE = [] include Aws::Structure end # An object that contains information about the volume of email sent on # each day of the analysis period. # # @!attribute [rw] start_date # The date that the DailyVolume metrics apply to, in Unix time. # @return [Time] # # @!attribute [rw] volume_statistics # An object that contains inbox placement metrics for a specific day # in the analysis period. # @return [Types::VolumeStatistics] # # @!attribute [rw] domain_isp_placements # An object that contains inbox placement metrics for a specified day # in the analysis period, broken out by the recipient's email # provider. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DailyVolume AWS API Documentation # class DailyVolume < Struct.new( :start_date, :volume_statistics, :domain_isp_placements) SENSITIVE = [] include Aws::Structure end # An object containing additional settings for your VDM configuration as # applicable to the Dashboard. # # @!attribute [rw] engagement_metrics # Specifies the status of your VDM engagement metrics collection. Can # be one of the following: # # * `ENABLED` – Amazon SES enables engagement metrics for your # account. # # * `DISABLED` – Amazon SES disables engagement metrics for your # account. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DashboardAttributes AWS API Documentation # class DashboardAttributes < Struct.new( :engagement_metrics) SENSITIVE = [] include Aws::Structure end # An object containing additional settings for your VDM configuration as # applicable to the Dashboard. # # @!attribute [rw] engagement_metrics # Specifies the status of your VDM engagement metrics collection. Can # be one of the following: # # * `ENABLED` – Amazon SES enables engagement metrics for the # configuration set. # # * `DISABLED` – Amazon SES disables engagement metrics for the # configuration set. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DashboardOptions AWS API Documentation # class DashboardOptions < Struct.new( :engagement_metrics) SENSITIVE = [] include Aws::Structure end # Contains information about a dedicated IP address that is associated # with your Amazon SES account. # # To learn more about requesting dedicated IP addresses, see [Requesting # and Relinquishing Dedicated IP Addresses][1] in the *Amazon SES # Developer Guide*. # # # # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/dedicated-ip-case.html # # @!attribute [rw] ip # An IPv4 address. # @return [String] # # @!attribute [rw] warmup_status # The warm-up status of a dedicated IP address. The status can have # one of the following values: # # * `IN_PROGRESS` – The IP address isn't ready to use because the # dedicated IP warm-up process is ongoing. # # * `DONE` – The dedicated IP warm-up process is complete, and the IP # address is ready to use. # @return [String] # # @!attribute [rw] warmup_percentage # Indicates how complete the dedicated IP warm-up process is. When # this value equals 1, the address has completed the warm-up process # and is ready for use. # @return [Integer] # # @!attribute [rw] pool_name # The name of the dedicated IP pool that the IP address is associated # with. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DedicatedIp AWS API Documentation # class DedicatedIp < Struct.new( :ip, :warmup_status, :warmup_percentage, :pool_name) SENSITIVE = [] include Aws::Structure end # Contains information about a dedicated IP pool. # # @!attribute [rw] pool_name # The name of the dedicated IP pool. # @return [String] # # @!attribute [rw] scaling_mode # The type of the dedicated IP pool. # # * `STANDARD` – A dedicated IP pool where the customer can control # which IPs are part of the pool. # # * `MANAGED` – A dedicated IP pool where the reputation and number of # IPs is automatically managed by Amazon SES. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DedicatedIpPool AWS API Documentation # class DedicatedIpPool < Struct.new( :pool_name, :scaling_mode) SENSITIVE = [] include Aws::Structure end # A request to delete an event destination from a configuration set. # # @!attribute [rw] configuration_set_name # The name of the configuration set that contains the event # destination to delete. # @return [String] # # @!attribute [rw] event_destination_name # The name of the event destination to delete. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteConfigurationSetEventDestinationRequest AWS API Documentation # class DeleteConfigurationSetEventDestinationRequest < Struct.new( :configuration_set_name, :event_destination_name) SENSITIVE = [] include Aws::Structure end # An HTTP 200 response if the request succeeds, or an error message if # the request fails. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteConfigurationSetEventDestinationResponse AWS API Documentation # class DeleteConfigurationSetEventDestinationResponse < Aws::EmptyStructure; end # A request to delete a configuration set. # # @!attribute [rw] configuration_set_name # The name of the configuration set. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteConfigurationSetRequest AWS API Documentation # class DeleteConfigurationSetRequest < Struct.new( :configuration_set_name) SENSITIVE = [] include Aws::Structure end # An HTTP 200 response if the request succeeds, or an error message if # the request fails. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteConfigurationSetResponse AWS API Documentation # class DeleteConfigurationSetResponse < Aws::EmptyStructure; end # @!attribute [rw] contact_list_name # The name of the contact list. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteContactListRequest AWS API Documentation # class DeleteContactListRequest < Struct.new( :contact_list_name) SENSITIVE = [] include Aws::Structure end # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteContactListResponse AWS API Documentation # class DeleteContactListResponse < Aws::EmptyStructure; end # @!attribute [rw] contact_list_name # The name of the contact list from which the contact should be # removed. # @return [String] # # @!attribute [rw] email_address # The contact's email address. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteContactRequest AWS API Documentation # class DeleteContactRequest < Struct.new( :contact_list_name, :email_address) SENSITIVE = [] include Aws::Structure end # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteContactResponse AWS API Documentation # class DeleteContactResponse < Aws::EmptyStructure; end # Represents a request to delete an existing custom verification email # template. # # @!attribute [rw] template_name # The name of the custom verification email template that you want to # delete. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteCustomVerificationEmailTemplateRequest AWS API Documentation # class DeleteCustomVerificationEmailTemplateRequest < Struct.new( :template_name) SENSITIVE = [] include Aws::Structure end # If the action is successful, the service sends back an HTTP 200 # response with an empty HTTP body. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteCustomVerificationEmailTemplateResponse AWS API Documentation # class DeleteCustomVerificationEmailTemplateResponse < Aws::EmptyStructure; end # A request to delete a dedicated IP pool. # # @!attribute [rw] pool_name # The name of the dedicated IP pool that you want to delete. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteDedicatedIpPoolRequest AWS API Documentation # class DeleteDedicatedIpPoolRequest < Struct.new( :pool_name) SENSITIVE = [] include Aws::Structure end # An HTTP 200 response if the request succeeds, or an error message if # the request fails. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteDedicatedIpPoolResponse AWS API Documentation # class DeleteDedicatedIpPoolResponse < Aws::EmptyStructure; end # Represents a request to delete a sending authorization policy for an # identity. Sending authorization is an Amazon SES feature that enables # you to authorize other senders to use your identities. For # information, see the [Amazon SES Developer Guide][1]. # # # # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-identity-owner-tasks-management.html # # @!attribute [rw] email_identity # The email identity. # @return [String] # # @!attribute [rw] policy_name # The name of the policy. # # The policy name cannot exceed 64 characters and can only include # alphanumeric characters, dashes, and underscores. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteEmailIdentityPolicyRequest AWS API Documentation # class DeleteEmailIdentityPolicyRequest < Struct.new( :email_identity, :policy_name) SENSITIVE = [] include Aws::Structure end # An HTTP 200 response if the request succeeds, or an error message if # the request fails. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteEmailIdentityPolicyResponse AWS API Documentation # class DeleteEmailIdentityPolicyResponse < Aws::EmptyStructure; end # A request to delete an existing email identity. When you delete an # identity, you lose the ability to send email from that identity. You # can restore your ability to send email by completing the verification # process for the identity again. # # @!attribute [rw] email_identity # The identity (that is, the email address or domain) to delete. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteEmailIdentityRequest AWS API Documentation # class DeleteEmailIdentityRequest < Struct.new( :email_identity) SENSITIVE = [] include Aws::Structure end # An HTTP 200 response if the request succeeds, or an error message if # the request fails. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteEmailIdentityResponse AWS API Documentation # class DeleteEmailIdentityResponse < Aws::EmptyStructure; end # Represents a request to delete an email template. For more # information, see the [Amazon SES Developer Guide][1]. # # # # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html # # @!attribute [rw] template_name # The name of the template to be deleted. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteEmailTemplateRequest AWS API Documentation # class DeleteEmailTemplateRequest < Struct.new( :template_name) SENSITIVE = [] include Aws::Structure end # If the action is successful, the service sends back an HTTP 200 # response with an empty HTTP body. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteEmailTemplateResponse AWS API Documentation # class DeleteEmailTemplateResponse < Aws::EmptyStructure; end # A request to remove an email address from the suppression list for # your account. # # @!attribute [rw] email_address # The suppressed email destination to remove from the account # suppression list. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteSuppressedDestinationRequest AWS API Documentation # class DeleteSuppressedDestinationRequest < Struct.new( :email_address) SENSITIVE = [] include Aws::Structure end # An HTTP 200 response if the request succeeds, or an error message if # the request fails. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteSuppressedDestinationResponse AWS API Documentation # class DeleteSuppressedDestinationResponse < Aws::EmptyStructure; end # An object that contains metadata related to a predictive inbox # placement test. # # @!attribute [rw] report_id # A unique string that identifies the predictive inbox placement test. # @return [String] # # @!attribute [rw] report_name # A name that helps you identify a predictive inbox placement test # report. # @return [String] # # @!attribute [rw] subject # The subject line for an email that you submitted in a predictive # inbox placement test. # @return [String] # # @!attribute [rw] from_email_address # The sender address that you specified for the predictive inbox # placement test. # @return [String] # # @!attribute [rw] create_date # The date and time when the predictive inbox placement test was # created. # @return [Time] # # @!attribute [rw] deliverability_test_status # The status of the predictive inbox placement test. If the status is # `IN_PROGRESS`, then the predictive inbox placement test is currently # running. Predictive inbox placement tests are usually complete # within 24 hours of creating the test. If the status is `COMPLETE`, # then the test is finished, and you can use the # `GetDeliverabilityTestReport` to view the results of the test. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeliverabilityTestReport AWS API Documentation # class DeliverabilityTestReport < Struct.new( :report_id, :report_name, :subject, :from_email_address, :create_date, :deliverability_test_status) SENSITIVE = [] include Aws::Structure end # Used to associate a configuration set with a dedicated IP pool. # # @!attribute [rw] tls_policy # Specifies whether messages that use the configuration set are # required to use Transport Layer Security (TLS). If the value is # `Require`, messages are only delivered if a TLS connection can be # established. If the value is `Optional`, messages can be delivered # in plain text if a TLS connection can't be established. # @return [String] # # @!attribute [rw] sending_pool_name # The name of the dedicated IP pool to associate with the # configuration set. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeliveryOptions AWS API Documentation # class DeliveryOptions < Struct.new( :tls_policy, :sending_pool_name) SENSITIVE = [] include Aws::Structure end # An object that describes the recipients for an email. # # Amazon SES does not support the SMTPUTF8 extension, as described in # [RFC6531][1]. For this reason, the *local part* of a destination email # address (the part of the email address that precedes the @ sign) may # only contain [7-bit ASCII characters][2]. If the *domain part* of an # address (the part after the @ sign) contains non-ASCII characters, # they must be encoded using Punycode, as described in [RFC3492][3]. # # # # # # [1]: https://tools.ietf.org/html/rfc6531 # [2]: https://en.wikipedia.org/wiki/Email_address#Local-part # [3]: https://tools.ietf.org/html/rfc3492.html # # @!attribute [rw] to_addresses # An array that contains the email addresses of the "To" recipients # for the email. # @return [Array] # # @!attribute [rw] cc_addresses # An array that contains the email addresses of the "CC" (carbon # copy) recipients for the email. # @return [Array] # # @!attribute [rw] bcc_addresses # An array that contains the email addresses of the "BCC" (blind # carbon copy) recipients for the email. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/Destination AWS API Documentation # class Destination < Struct.new( :to_addresses, :cc_addresses, :bcc_addresses) SENSITIVE = [] include Aws::Structure end # An object that contains information about the DKIM authentication # status for an email identity. # # Amazon SES determines the authentication status by searching for # specific records in the DNS configuration for the domain. If you used # [Easy DKIM][1] to set up DKIM authentication, Amazon SES tries to find # three unique CNAME records in the DNS configuration for your domain. # If you provided a public key to perform DKIM authentication, Amazon # SES tries to find a TXT record that uses the selector that you # specified. The value of the TXT record must be a public key that's # paired with the private key that you specified in the process of # creating the identity # # # # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html # # @!attribute [rw] signing_enabled # If the value is `true`, then the messages that you send from the # identity are signed using DKIM. If the value is `false`, then the # messages that you send from the identity aren't DKIM-signed. # @return [Boolean] # # @!attribute [rw] status # Describes whether or not Amazon SES has successfully located the # DKIM records in the DNS records for the domain. The status can be # one of the following: # # * `PENDING` – The verification process was initiated, but Amazon SES # hasn't yet detected the DKIM records in the DNS configuration for # the domain. # # * `SUCCESS` – The verification process completed successfully. # # * `FAILED` – The verification process failed. This typically occurs # when Amazon SES fails to find the DKIM records in the DNS # configuration of the domain. # # * `TEMPORARY_FAILURE` – A temporary issue is preventing Amazon SES # from determining the DKIM authentication status of the domain. # # * `NOT_STARTED` – The DKIM verification process hasn't been # initiated for the domain. # @return [String] # # @!attribute [rw] tokens # If you used [Easy DKIM][1] to configure DKIM authentication for the # domain, then this object contains a set of unique strings that you # use to create a set of CNAME records that you add to the DNS # configuration for your domain. When Amazon SES detects these records # in the DNS configuration for your domain, the DKIM authentication # process is complete. # # If you configured DKIM authentication for the domain by providing # your own public-private key pair, then this object contains the # selector for the public key. # # Regardless of the DKIM authentication method you use, Amazon SES # searches for the appropriate records in the DNS configuration of the # domain for up to 72 hours. # # # # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html # @return [Array] # # @!attribute [rw] signing_attributes_origin # A string that indicates how DKIM was configured for the identity. # These are the possible values: # # * `AWS_SES` – Indicates that DKIM was configured for the identity by # using [Easy DKIM][1]. # # * `EXTERNAL` – Indicates that DKIM was configured for the identity # by using Bring Your Own DKIM (BYODKIM). # # # # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html # @return [String] # # @!attribute [rw] next_signing_key_length # \[Easy DKIM\] The key length of the future DKIM key pair to be # generated. This can be changed at most once per day. # @return [String] # # @!attribute [rw] current_signing_key_length # \[Easy DKIM\] The key length of the DKIM key pair in use. # @return [String] # # @!attribute [rw] last_key_generation_timestamp # \[Easy DKIM\] The last time a key pair was generated for this # identity. # @return [Time] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DkimAttributes AWS API Documentation # class DkimAttributes < Struct.new( :signing_enabled, :status, :tokens, :signing_attributes_origin, :next_signing_key_length, :current_signing_key_length, :last_key_generation_timestamp) SENSITIVE = [] include Aws::Structure end # An object that contains configuration for Bring Your Own DKIM # (BYODKIM), or, for Easy DKIM # # @!attribute [rw] domain_signing_selector # \[Bring Your Own DKIM\] A string that's used to identify a public # key in the DNS configuration for a domain. # @return [String] # # @!attribute [rw] domain_signing_private_key # \[Bring Your Own DKIM\] A private key that's used to generate a # DKIM signature. # # The private key must use 1024 or 2048-bit RSA encryption, and must # be encoded using base64 encoding. # @return [String] # # @!attribute [rw] next_signing_key_length # \[Easy DKIM\] The key length of the future DKIM key pair to be # generated. This can be changed at most once per day. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DkimSigningAttributes AWS API Documentation # class DkimSigningAttributes < Struct.new( :domain_signing_selector, :domain_signing_private_key, :next_signing_key_length) SENSITIVE = [:domain_signing_private_key] include Aws::Structure end # An object that contains the deliverability data for a specific # campaign. This data is available for a campaign only if the campaign # sent email by using a domain that the Deliverability dashboard is # enabled for (`PutDeliverabilityDashboardOption` operation). # # @!attribute [rw] campaign_id # The unique identifier for the campaign. The Deliverability dashboard # automatically generates and assigns this identifier to a campaign. # @return [String] # # @!attribute [rw] image_url # The URL of an image that contains a snapshot of the email message # that was sent. # @return [String] # # @!attribute [rw] subject # The subject line, or title, of the email message. # @return [String] # # @!attribute [rw] from_address # The verified email address that the email message was sent from. # @return [String] # # @!attribute [rw] sending_ips # The IP addresses that were used to send the email message. # @return [Array] # # @!attribute [rw] first_seen_date_time # The first time when the email message was delivered to any # recipient's inbox. This value can help you determine how long it # took for a campaign to deliver an email message. # @return [Time] # # @!attribute [rw] last_seen_date_time # The last time when the email message was delivered to any # recipient's inbox. This value can help you determine how long it # took for a campaign to deliver an email message. # @return [Time] # # @!attribute [rw] inbox_count # The number of email messages that were delivered to recipients’ # inboxes. # @return [Integer] # # @!attribute [rw] spam_count # The number of email messages that were delivered to recipients' # spam or junk mail folders. # @return [Integer] # # @!attribute [rw] read_rate # The percentage of email messages that were opened by recipients. Due # to technical limitations, this value only includes recipients who # opened the message by using an email client that supports images. # @return [Float] # # @!attribute [rw] delete_rate # The percentage of email messages that were deleted by recipients, # without being opened first. Due to technical limitations, this value # only includes recipients who opened the message by using an email # client that supports images. # @return [Float] # # @!attribute [rw] read_delete_rate # The percentage of email messages that were opened and then deleted # by recipients. Due to technical limitations, this value only # includes recipients who opened the message by using an email client # that supports images. # @return [Float] # # @!attribute [rw] projected_volume # The projected number of recipients that the email message was sent # to. # @return [Integer] # # @!attribute [rw] esps # The major email providers who handled the email message. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DomainDeliverabilityCampaign AWS API Documentation # class DomainDeliverabilityCampaign < Struct.new( :campaign_id, :image_url, :subject, :from_address, :sending_ips, :first_seen_date_time, :last_seen_date_time, :inbox_count, :spam_count, :read_rate, :delete_rate, :read_delete_rate, :projected_volume, :esps) SENSITIVE = [] include Aws::Structure end # 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. # # @!attribute [rw] domain # A verified domain that’s associated with your Amazon Web Services # account and currently has an active Deliverability dashboard # subscription. # @return [String] # # @!attribute [rw] subscription_start_date # The date when you enabled the Deliverability dashboard for the # domain. # @return [Time] # # @!attribute [rw] inbox_placement_tracking_option # An object that contains information about the inbox placement data # settings for the domain. # @return [Types::InboxPlacementTrackingOption] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DomainDeliverabilityTrackingOption AWS API Documentation # class DomainDeliverabilityTrackingOption < Struct.new( :domain, :subscription_start_date, :inbox_placement_tracking_option) SENSITIVE = [] include Aws::Structure end # An object that contains inbox placement data for email sent from one # of your email domains to a specific email provider. # # @!attribute [rw] isp_name # The name of the email provider that the inbox placement data applies # to. # @return [String] # # @!attribute [rw] inbox_raw_count # The total number of messages that were sent from the selected domain # to the specified email provider that arrived in recipients' # inboxes. # @return [Integer] # # @!attribute [rw] spam_raw_count # The total number of messages that were sent from the selected domain # to the specified email provider that arrived in recipients' spam or # junk mail folders. # @return [Integer] # # @!attribute [rw] inbox_percentage # The percentage of messages that were sent from the selected domain # to the specified email provider that arrived in recipients' # inboxes. # @return [Float] # # @!attribute [rw] spam_percentage # The percentage of messages that were sent from the selected domain # to the specified email provider that arrived in recipients' spam or # junk mail folders. # @return [Float] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DomainIspPlacement AWS API Documentation # class DomainIspPlacement < Struct.new( :isp_name, :inbox_raw_count, :spam_raw_count, :inbox_percentage, :spam_percentage) SENSITIVE = [] include Aws::Structure end # An object that defines the entire content of the email, including the # message headers and the body content. You can create a simple email # message, in which you specify the subject and the text and HTML # versions of the message body. You can also create raw messages, in # which you specify a complete MIME-formatted message. Raw messages can # include attachments and custom headers. # # @!attribute [rw] simple # The simple email message. The message consists of a subject and a # message body. # @return [Types::Message] # # @!attribute [rw] raw # The raw email message. The message has to meet the following # criteria: # # * The message has to contain a header and a body, separated by one # blank line. # # * All of the required header fields must be present in the message. # # * Each part of a multipart MIME message must be formatted properly. # # * If you include attachments, they must be in a file format that the # Amazon SES API v2 supports. # # * The entire message must be Base64 encoded. # # * If any of the MIME parts in your message contain content that is # outside of the 7-bit ASCII character range, you should encode that # content to ensure that recipients' email clients render the # message properly. # # * The length of any single line of text in the message can't exceed # 1,000 characters. This restriction is defined in [RFC 5321][1]. # # # # [1]: https://tools.ietf.org/html/rfc5321 # @return [Types::RawMessage] # # @!attribute [rw] template # The template to use for the email message. # @return [Types::Template] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/EmailContent AWS API Documentation # class EmailContent < Struct.new( :simple, :raw, :template) SENSITIVE = [] include Aws::Structure end # The content of the email, composed of a subject line, an HTML part, # and a text-only part. # # @!attribute [rw] subject # The subject line of the email. # @return [String] # # @!attribute [rw] text # The email body that will be visible to recipients whose email # clients do not display HTML. # @return [String] # # @!attribute [rw] html # The HTML body of the email. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/EmailTemplateContent AWS API Documentation # class EmailTemplateContent < Struct.new( :subject, :text, :html) SENSITIVE = [] include Aws::Structure end # Contains information about an email template. # # @!attribute [rw] template_name # The name of the template. # @return [String] # # @!attribute [rw] created_timestamp # The time and date the template was created. # @return [Time] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/EmailTemplateMetadata AWS API Documentation # class EmailTemplateMetadata < Struct.new( :template_name, :created_timestamp) SENSITIVE = [] include Aws::Structure end # In the Amazon SES API v2, *events* include message sends, deliveries, # opens, clicks, bounces, complaints and delivery delays. *Event # destinations* are places that you can send information about these # events to. For example, you can send event data to Amazon SNS to # receive notifications when you receive bounces or complaints, or you # can use Amazon Kinesis Data Firehose to stream data to Amazon S3 for # long-term storage. # # @!attribute [rw] name # A name that identifies the event destination. # @return [String] # # @!attribute [rw] enabled # If `true`, the event destination is enabled. When the event # destination is enabled, the specified event types are sent to the # destinations in this `EventDestinationDefinition`. # # If `false`, the event destination is disabled. When the event # destination is disabled, events aren't sent to the specified # destinations. # @return [Boolean] # # @!attribute [rw] matching_event_types # The types of events that Amazon SES sends to the specified event # destinations. # @return [Array] # # @!attribute [rw] kinesis_firehose_destination # An object that defines an Amazon Kinesis Data Firehose destination # for email events. You can use Amazon Kinesis Data Firehose to stream # data to other services, such as Amazon S3 and Amazon Redshift. # @return [Types::KinesisFirehoseDestination] # # @!attribute [rw] cloud_watch_destination # An object that defines an Amazon CloudWatch destination for email # events. You can use Amazon CloudWatch to monitor and gain insights # on your email sending metrics. # @return [Types::CloudWatchDestination] # # @!attribute [rw] sns_destination # An object that defines an Amazon SNS destination for email events. # You can use Amazon SNS to send notification when certain email # events occur. # @return [Types::SnsDestination] # # @!attribute [rw] pinpoint_destination # An object that defines an Amazon Pinpoint project destination for # email events. You can send email event data to a Amazon Pinpoint # project to view metrics using the Transactional Messaging dashboards # that are built in to Amazon Pinpoint. For more information, see # [Transactional Messaging Charts][1] in the *Amazon Pinpoint User # Guide*. # # # # [1]: https://docs.aws.amazon.com/pinpoint/latest/userguide/analytics-transactional-messages.html # @return [Types::PinpointDestination] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/EventDestination AWS API Documentation # class EventDestination < Struct.new( :name, :enabled, :matching_event_types, :kinesis_firehose_destination, :cloud_watch_destination, :sns_destination, :pinpoint_destination) SENSITIVE = [] include Aws::Structure end # An object that defines the event destination. Specifically, it defines # which services receive events from emails sent using the configuration # set that the event destination is associated with. Also defines the # types of events that are sent to the event destination. # # @!attribute [rw] enabled # If `true`, the event destination is enabled. When the event # destination is enabled, the specified event types are sent to the # destinations in this `EventDestinationDefinition`. # # If `false`, the event destination is disabled. When the event # destination is disabled, events aren't sent to the specified # destinations. # @return [Boolean] # # @!attribute [rw] matching_event_types # An array that specifies which events the Amazon SES API v2 should # send to the destinations in this `EventDestinationDefinition`. # @return [Array] # # @!attribute [rw] kinesis_firehose_destination # An object that defines an Amazon Kinesis Data Firehose destination # for email events. You can use Amazon Kinesis Data Firehose to stream # data to other services, such as Amazon S3 and Amazon Redshift. # @return [Types::KinesisFirehoseDestination] # # @!attribute [rw] cloud_watch_destination # An object that defines an Amazon CloudWatch destination for email # events. You can use Amazon CloudWatch to monitor and gain insights # on your email sending metrics. # @return [Types::CloudWatchDestination] # # @!attribute [rw] sns_destination # An object that defines an Amazon SNS destination for email events. # You can use Amazon SNS to send notification when certain email # events occur. # @return [Types::SnsDestination] # # @!attribute [rw] pinpoint_destination # An object that defines an Amazon Pinpoint project destination for # email events. You can send email event data to a Amazon Pinpoint # project to view metrics using the Transactional Messaging dashboards # that are built in to Amazon Pinpoint. For more information, see # [Transactional Messaging Charts][1] in the *Amazon Pinpoint User # Guide*. # # # # [1]: https://docs.aws.amazon.com/pinpoint/latest/userguide/analytics-transactional-messages.html # @return [Types::PinpointDestination] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/EventDestinationDefinition AWS API Documentation # class EventDestinationDefinition < Struct.new( :enabled, :matching_event_types, :kinesis_firehose_destination, :cloud_watch_destination, :sns_destination, :pinpoint_destination) SENSITIVE = [] include Aws::Structure end # An object that contains the failure details about an import job. # # @!attribute [rw] failed_records_s3_url # An Amazon S3 presigned URL that contains all the failed records and # related information. # @return [String] # # @!attribute [rw] error_message # A message about why the import job failed. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/FailureInfo AWS API Documentation # class FailureInfo < Struct.new( :failed_records_s3_url, :error_message) SENSITIVE = [] include Aws::Structure end # A request to obtain information about the email-sending capabilities # of your Amazon SES account. # # @api private # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetAccountRequest AWS API Documentation # class GetAccountRequest < Aws::EmptyStructure; end # A list of details about the email-sending capabilities of your Amazon # SES account in the current Amazon Web Services Region. # # @!attribute [rw] dedicated_ip_auto_warmup_enabled # Indicates whether or not the automatic warm-up feature is enabled # for dedicated IP addresses that are associated with your account. # @return [Boolean] # # @!attribute [rw] enforcement_status # The reputation status of your Amazon SES account. The status can be # one of the following: # # * `HEALTHY` – There are no reputation-related issues that currently # impact your account. # # * `PROBATION` – We've identified potential issues with your Amazon # SES account. We're placing your account under review while you # work on correcting these issues. # # * `SHUTDOWN` – Your account's ability to send email is currently # paused because of an issue with the email sent from your account. # When you correct the issue, you can contact us and request that # your account's ability to send email is resumed. # @return [String] # # @!attribute [rw] production_access_enabled # Indicates whether or not your account has production access in the # current Amazon Web Services Region. # # If the value is `false`, then your account is in the *sandbox*. When # your account is in the sandbox, you can only send email to verified # identities. Additionally, the maximum number of emails you can send # in a 24-hour period (your sending quota) is 200, and the maximum # number of emails you can send per second (your maximum sending rate) # is 1. # # If the value is `true`, then your account has production access. # When your account has production access, you can send email to any # address. The sending quota and maximum sending rate for your account # vary based on your specific use case. # @return [Boolean] # # @!attribute [rw] send_quota # An object that contains information about the per-day and per-second # sending limits for your Amazon SES account in the current Amazon Web # Services Region. # @return [Types::SendQuota] # # @!attribute [rw] sending_enabled # Indicates whether or not email sending is enabled for your Amazon # SES account in the current Amazon Web Services Region. # @return [Boolean] # # @!attribute [rw] suppression_attributes # An object that contains information about the email address # suppression preferences for your account in the current Amazon Web # Services Region. # @return [Types::SuppressionAttributes] # # @!attribute [rw] details # An object that defines your account details. # @return [Types::AccountDetails] # # @!attribute [rw] vdm_attributes # The VDM attributes that apply to your Amazon SES account. # @return [Types::VdmAttributes] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetAccountResponse AWS API Documentation # class GetAccountResponse < Struct.new( :dedicated_ip_auto_warmup_enabled, :enforcement_status, :production_access_enabled, :send_quota, :sending_enabled, :suppression_attributes, :details, :vdm_attributes) SENSITIVE = [] include Aws::Structure end # A request to retrieve a list of the blacklists that your dedicated IP # addresses appear on. # # @!attribute [rw] blacklist_item_names # A list of IP addresses that you want to retrieve blacklist # information about. You can only specify the dedicated IP addresses # that you use to send email using Amazon SES or Amazon Pinpoint. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetBlacklistReportsRequest AWS API Documentation # class GetBlacklistReportsRequest < Struct.new( :blacklist_item_names) SENSITIVE = [] include Aws::Structure end # An object that contains information about blacklist events. # # @!attribute [rw] blacklist_report # An object that contains information about a blacklist that one of # your dedicated IP addresses appears on. # @return [Hash>] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetBlacklistReportsResponse AWS API Documentation # class GetBlacklistReportsResponse < Struct.new( :blacklist_report) SENSITIVE = [] include Aws::Structure end # A request to obtain information about the event destinations for a # configuration set. # # @!attribute [rw] configuration_set_name # The name of the configuration set that contains the event # destination. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetConfigurationSetEventDestinationsRequest AWS API Documentation # class GetConfigurationSetEventDestinationsRequest < Struct.new( :configuration_set_name) SENSITIVE = [] include Aws::Structure end # Information about an event destination for a configuration set. # # @!attribute [rw] event_destinations # An array that includes all of the events destinations that have been # configured for the configuration set. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetConfigurationSetEventDestinationsResponse AWS API Documentation # class GetConfigurationSetEventDestinationsResponse < Struct.new( :event_destinations) SENSITIVE = [] include Aws::Structure end # A request to obtain information about a configuration set. # # @!attribute [rw] configuration_set_name # The name of the configuration set. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetConfigurationSetRequest AWS API Documentation # class GetConfigurationSetRequest < Struct.new( :configuration_set_name) SENSITIVE = [] include Aws::Structure end # Information about a configuration set. # # @!attribute [rw] configuration_set_name # The name of the configuration set. # @return [String] # # @!attribute [rw] tracking_options # An object that defines the open and click tracking options for # emails that you send using the configuration set. # @return [Types::TrackingOptions] # # @!attribute [rw] delivery_options # An object that defines the dedicated IP pool that is used to send # emails that you send using the configuration set. # @return [Types::DeliveryOptions] # # @!attribute [rw] reputation_options # An object that defines whether or not Amazon SES collects reputation # metrics for the emails that you send that use the configuration set. # @return [Types::ReputationOptions] # # @!attribute [rw] sending_options # An object that defines whether or not Amazon SES can send email that # you send using the configuration set. # @return [Types::SendingOptions] # # @!attribute [rw] tags # An array of objects that define the tags (keys and values) that are # associated with the configuration set. # @return [Array] # # @!attribute [rw] suppression_options # An object that contains information about the suppression list # preferences for your account. # @return [Types::SuppressionOptions] # # @!attribute [rw] vdm_options # An object that contains information about the VDM preferences for # your configuration set. # @return [Types::VdmOptions] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetConfigurationSetResponse AWS API Documentation # class GetConfigurationSetResponse < Struct.new( :configuration_set_name, :tracking_options, :delivery_options, :reputation_options, :sending_options, :tags, :suppression_options, :vdm_options) SENSITIVE = [] include Aws::Structure end # @!attribute [rw] contact_list_name # The name of the contact list. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetContactListRequest AWS API Documentation # class GetContactListRequest < Struct.new( :contact_list_name) SENSITIVE = [] include Aws::Structure end # @!attribute [rw] contact_list_name # The name of the contact list. # @return [String] # # @!attribute [rw] topics # An interest group, theme, or label within a list. A contact list can # have multiple topics. # @return [Array] # # @!attribute [rw] description # A description of what the contact list is about. # @return [String] # # @!attribute [rw] created_timestamp # A timestamp noting when the contact list was created. # @return [Time] # # @!attribute [rw] last_updated_timestamp # A timestamp noting the last time the contact list was updated. # @return [Time] # # @!attribute [rw] tags # The tags associated with a contact list. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetContactListResponse AWS API Documentation # class GetContactListResponse < Struct.new( :contact_list_name, :topics, :description, :created_timestamp, :last_updated_timestamp, :tags) SENSITIVE = [] include Aws::Structure end # @!attribute [rw] contact_list_name # The name of the contact list to which the contact belongs. # @return [String] # # @!attribute [rw] email_address # The contact's email addres. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetContactRequest AWS API Documentation # class GetContactRequest < Struct.new( :contact_list_name, :email_address) SENSITIVE = [] include Aws::Structure end # @!attribute [rw] contact_list_name # The name of the contact list to which the contact belongs. # @return [String] # # @!attribute [rw] email_address # The contact's email addres. # @return [String] # # @!attribute [rw] topic_preferences # The contact's preference for being opted-in to or opted-out of a # topic.> # @return [Array] # # @!attribute [rw] topic_default_preferences # The default topic preferences applied to the contact. # @return [Array] # # @!attribute [rw] unsubscribe_all # A boolean value status noting if the contact is unsubscribed from # all contact list topics. # @return [Boolean] # # @!attribute [rw] attributes_data # The attribute data attached to a contact. # @return [String] # # @!attribute [rw] created_timestamp # A timestamp noting when the contact was created. # @return [Time] # # @!attribute [rw] last_updated_timestamp # A timestamp noting the last time the contact's information was # updated. # @return [Time] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetContactResponse AWS API Documentation # class GetContactResponse < Struct.new( :contact_list_name, :email_address, :topic_preferences, :topic_default_preferences, :unsubscribe_all, :attributes_data, :created_timestamp, :last_updated_timestamp) SENSITIVE = [] include Aws::Structure end # Represents a request to retrieve an existing custom verification email # template. # # @!attribute [rw] template_name # The name of the custom verification email template that you want to # retrieve. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetCustomVerificationEmailTemplateRequest AWS API Documentation # class GetCustomVerificationEmailTemplateRequest < Struct.new( :template_name) SENSITIVE = [] include Aws::Structure end # The following elements are returned by the service. # # @!attribute [rw] template_name # The name of the custom verification email template. # @return [String] # # @!attribute [rw] from_email_address # The email address that the custom verification email is sent from. # @return [String] # # @!attribute [rw] template_subject # The subject line of the custom verification email. # @return [String] # # @!attribute [rw] template_content # The content of the custom verification email. # @return [String] # # @!attribute [rw] success_redirection_url # The URL that the recipient of the verification email is sent to if # his or her address is successfully verified. # @return [String] # # @!attribute [rw] failure_redirection_url # The URL that the recipient of the verification email is sent to if # his or her address is not successfully verified. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetCustomVerificationEmailTemplateResponse AWS API Documentation # class GetCustomVerificationEmailTemplateResponse < Struct.new( :template_name, :from_email_address, :template_subject, :template_content, :success_redirection_url, :failure_redirection_url) SENSITIVE = [] include Aws::Structure end # A request to obtain more information about a dedicated IP pool. # # @!attribute [rw] pool_name # The name of the dedicated IP pool to retrieve. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDedicatedIpPoolRequest AWS API Documentation # class GetDedicatedIpPoolRequest < Struct.new( :pool_name) SENSITIVE = [] include Aws::Structure end # The following element is returned by the service. # # @!attribute [rw] dedicated_ip_pool # An object that contains information about a dedicated IP pool. # @return [Types::DedicatedIpPool] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDedicatedIpPoolResponse AWS API Documentation # class GetDedicatedIpPoolResponse < Struct.new( :dedicated_ip_pool) SENSITIVE = [] include Aws::Structure end # A request to obtain more information about a dedicated IP address. # # @!attribute [rw] ip # The IP address that you want to obtain more information about. The # value you specify has to be a dedicated IP address that's # assocaited with your Amazon Web Services account. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDedicatedIpRequest AWS API Documentation # class GetDedicatedIpRequest < Struct.new( :ip) SENSITIVE = [] include Aws::Structure end # Information about a dedicated IP address. # # @!attribute [rw] dedicated_ip # An object that contains information about a dedicated IP address. # @return [Types::DedicatedIp] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDedicatedIpResponse AWS API Documentation # class GetDedicatedIpResponse < Struct.new( :dedicated_ip) SENSITIVE = [] include Aws::Structure end # A request to obtain more information about dedicated IP pools. # # @!attribute [rw] pool_name # The name of the IP pool that the dedicated IP address is associated # with. # @return [String] # # @!attribute [rw] next_token # A token returned from a previous call to `GetDedicatedIps` to # indicate the position of the dedicated IP pool in the list of IP # pools. # @return [String] # # @!attribute [rw] page_size # The number of results to show in a single call to # `GetDedicatedIpsRequest`. If the number of results is larger than # the number you specified in this parameter, then the response # includes a `NextToken` element, which you can use to obtain # additional results. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDedicatedIpsRequest AWS API Documentation # class GetDedicatedIpsRequest < Struct.new( :pool_name, :next_token, :page_size) SENSITIVE = [] include Aws::Structure end # Information about the dedicated IP addresses that are associated with # your Amazon Web Services account. # # @!attribute [rw] dedicated_ips # A list of dedicated IP addresses that are associated with your # Amazon Web Services account. # @return [Array] # # @!attribute [rw] next_token # A token that indicates that there are additional dedicated IP # addresses to list. To view additional addresses, issue another # request to `GetDedicatedIps`, passing this token in the `NextToken` # parameter. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDedicatedIpsResponse AWS API Documentation # class GetDedicatedIpsResponse < Struct.new( :dedicated_ips, :next_token) SENSITIVE = [] include Aws::Structure end # Retrieve information about the status of the Deliverability dashboard # for your Amazon Web Services account. When the Deliverability # dashboard is enabled, you gain access to reputation, deliverability, # and other metrics for your domains. You also gain the ability to # perform predictive inbox placement tests. # # When you use the Deliverability dashboard, you pay a monthly # subscription charge, in addition to any other fees that you accrue by # using Amazon SES and other Amazon Web Services services. For more # information about the features and cost of a Deliverability dashboard # subscription, see [Amazon Pinpoint Pricing][1]. # # # # [1]: http://aws.amazon.com/pinpoint/pricing/ # # @api private # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDeliverabilityDashboardOptionsRequest AWS API Documentation # class GetDeliverabilityDashboardOptionsRequest < Aws::EmptyStructure; end # An object that shows the status of the Deliverability dashboard. # # @!attribute [rw] dashboard_enabled # Specifies whether the Deliverability dashboard is enabled. If this # value is `true`, the dashboard is enabled. # @return [Boolean] # # @!attribute [rw] subscription_expiry_date # The date when your current subscription to the Deliverability # dashboard is scheduled to expire, if your subscription is scheduled # to expire at the end of the current calendar month. This value is # null if you have an active subscription that isn’t due to expire at # the end of the month. # @return [Time] # # @!attribute [rw] account_status # The current status of your Deliverability dashboard subscription. If # this value is `PENDING_EXPIRATION`, your subscription is scheduled # to expire at the end of the current calendar month. # @return [String] # # @!attribute [rw] active_subscribed_domains # An array of objects, one for each verified domain that you use to # send email and currently has an active Deliverability dashboard # subscription that isn’t scheduled to expire at the end of the # current calendar month. # @return [Array] # # @!attribute [rw] pending_expiration_subscribed_domains # An array of objects, one for each verified domain that you use to # send email and currently has an active Deliverability dashboard # subscription that's scheduled to expire at the end of the current # calendar month. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDeliverabilityDashboardOptionsResponse AWS API Documentation # class GetDeliverabilityDashboardOptionsResponse < Struct.new( :dashboard_enabled, :subscription_expiry_date, :account_status, :active_subscribed_domains, :pending_expiration_subscribed_domains) SENSITIVE = [] include Aws::Structure end # A request to retrieve the results of a predictive inbox placement # test. # # @!attribute [rw] report_id # A unique string that identifies the predictive inbox placement test. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDeliverabilityTestReportRequest AWS API Documentation # class GetDeliverabilityTestReportRequest < Struct.new( :report_id) SENSITIVE = [] include Aws::Structure end # The results of the predictive inbox placement test. # # @!attribute [rw] deliverability_test_report # An object that contains the results of the predictive inbox # placement test. # @return [Types::DeliverabilityTestReport] # # @!attribute [rw] overall_placement # An object that specifies how many test messages that were sent # during the predictive inbox placement test were delivered to # recipients' inboxes, how many were sent to recipients' spam # folders, and how many weren't delivered. # @return [Types::PlacementStatistics] # # @!attribute [rw] isp_placements # An object that describes how the test email was handled by several # email providers, including Gmail, Hotmail, Yahoo, AOL, and others. # @return [Array] # # @!attribute [rw] message # An object that contains the message that you sent when you performed # this predictive inbox placement test. # @return [String] # # @!attribute [rw] tags # An array of objects that define the tags (keys and values) that are # associated with the predictive inbox placement test. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDeliverabilityTestReportResponse AWS API Documentation # class GetDeliverabilityTestReportResponse < Struct.new( :deliverability_test_report, :overall_placement, :isp_placements, :message, :tags) SENSITIVE = [] include Aws::Structure end # Retrieve all the deliverability data for a specific campaign. This # data is available for a campaign only if the campaign sent email by # using a domain that the Deliverability dashboard is enabled for # (`PutDeliverabilityDashboardOption` operation). # # @!attribute [rw] campaign_id # The unique identifier for the campaign. The Deliverability dashboard # automatically generates and assigns this identifier to a campaign. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDomainDeliverabilityCampaignRequest AWS API Documentation # class GetDomainDeliverabilityCampaignRequest < Struct.new( :campaign_id) SENSITIVE = [] include Aws::Structure end # An object that contains all the deliverability data for a specific # campaign. This data is available for a campaign only if the campaign # sent email by using a domain that the Deliverability dashboard is # enabled for. # # @!attribute [rw] domain_deliverability_campaign # An object that contains the deliverability data for the campaign. # @return [Types::DomainDeliverabilityCampaign] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDomainDeliverabilityCampaignResponse AWS API Documentation # class GetDomainDeliverabilityCampaignResponse < Struct.new( :domain_deliverability_campaign) SENSITIVE = [] include Aws::Structure end # A request to obtain deliverability metrics for a domain. # # @!attribute [rw] domain # The domain that you want to obtain deliverability metrics for. # @return [String] # # @!attribute [rw] start_date # The first day (in Unix time) that you want to obtain domain # deliverability metrics for. # @return [Time] # # @!attribute [rw] end_date # 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`. # @return [Time] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDomainStatisticsReportRequest AWS API Documentation # class GetDomainStatisticsReportRequest < Struct.new( :domain, :start_date, :end_date) SENSITIVE = [] include Aws::Structure end # An object that includes statistics that are related to the domain that # you specified. # # @!attribute [rw] overall_volume # An object that contains deliverability metrics for the domain that # you specified. The data in this object is a summary of all of the # data that was collected from the `StartDate` to the `EndDate`. # @return [Types::OverallVolume] # # @!attribute [rw] daily_volumes # An object that contains deliverability metrics for the domain that # you specified. This object contains data for each day, starting on # the `StartDate` and ending on the `EndDate`. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDomainStatisticsReportResponse AWS API Documentation # class GetDomainStatisticsReportResponse < Struct.new( :overall_volume, :daily_volumes) SENSITIVE = [] include Aws::Structure end # A request to return the policies of an email identity. # # @!attribute [rw] email_identity # The email identity. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetEmailIdentityPoliciesRequest AWS API Documentation # class GetEmailIdentityPoliciesRequest < Struct.new( :email_identity) SENSITIVE = [] include Aws::Structure end # Identity policies associated with email identity. # # @!attribute [rw] policies # A map of policy names to policies. # @return [Hash] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetEmailIdentityPoliciesResponse AWS API Documentation # class GetEmailIdentityPoliciesResponse < Struct.new( :policies) SENSITIVE = [] include Aws::Structure end # A request to return details about an email identity. # # @!attribute [rw] email_identity # The email identity. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetEmailIdentityRequest AWS API Documentation # class GetEmailIdentityRequest < Struct.new( :email_identity) SENSITIVE = [] include Aws::Structure end # Details about an email identity. # # @!attribute [rw] identity_type # The email identity type. Note: the `MANAGED_DOMAIN` identity type is # not supported. # @return [String] # # @!attribute [rw] feedback_forwarding_status # The feedback forwarding configuration for the identity. # # If the value is `true`, you receive email notifications when bounce # or complaint events occur. These notifications are sent to the # address that you specified in the `Return-Path` header of the # original email. # # You're required to have a method of tracking bounces and # complaints. If you haven't set up another mechanism for receiving # bounce or complaint notifications (for example, by setting up an # event destination), you receive an email notification when these # events occur (even if this setting is disabled). # @return [Boolean] # # @!attribute [rw] verified_for_sending_status # Specifies whether or not the identity is verified. You can only send # email from verified email addresses or domains. For more information # about verifying identities, see the [Amazon Pinpoint User Guide][1]. # # # # [1]: https://docs.aws.amazon.com/pinpoint/latest/userguide/channels-email-manage-verify.html # @return [Boolean] # # @!attribute [rw] dkim_attributes # An object that contains information about the DKIM attributes for # the identity. # @return [Types::DkimAttributes] # # @!attribute [rw] mail_from_attributes # An object that contains information about the Mail-From attributes # for the email identity. # @return [Types::MailFromAttributes] # # @!attribute [rw] policies # A map of policy names to policies. # @return [Hash] # # @!attribute [rw] tags # An array of objects that define the tags (keys and values) that are # associated with the email identity. # @return [Array] # # @!attribute [rw] configuration_set_name # The configuration set used by default when sending from this # identity. # @return [String] # # @!attribute [rw] verification_status # The verification status of the identity. The status can be one of # the following: # # * `PENDING` – The verification process was initiated, but Amazon SES # hasn't yet been able to verify the identity. # # * `SUCCESS` – The verification process completed successfully. # # * `FAILED` – The verification process failed. # # * `TEMPORARY_FAILURE` – A temporary issue is preventing Amazon SES # from determining the verification status of the identity. # # * `NOT_STARTED` – The verification process hasn't been initiated # for the identity. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetEmailIdentityResponse AWS API Documentation # class GetEmailIdentityResponse < Struct.new( :identity_type, :feedback_forwarding_status, :verified_for_sending_status, :dkim_attributes, :mail_from_attributes, :policies, :tags, :configuration_set_name, :verification_status) SENSITIVE = [] include Aws::Structure end # Represents a request to display the template object (which includes # the subject line, HTML part and text part) for the template you # specify. # # @!attribute [rw] template_name # The name of the template. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetEmailTemplateRequest AWS API Documentation # class GetEmailTemplateRequest < Struct.new( :template_name) SENSITIVE = [] include Aws::Structure end # The following element is returned by the service. # # @!attribute [rw] template_name # The name of the template. # @return [String] # # @!attribute [rw] template_content # The content of the email template, composed of a subject line, an # HTML part, and a text-only part. # @return [Types::EmailTemplateContent] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetEmailTemplateResponse AWS API Documentation # class GetEmailTemplateResponse < Struct.new( :template_name, :template_content) SENSITIVE = [] include Aws::Structure end # Represents a request for information about an import job using the # import job ID. # # @!attribute [rw] job_id # The ID of the import job. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetImportJobRequest AWS API Documentation # class GetImportJobRequest < Struct.new( :job_id) SENSITIVE = [] include Aws::Structure end # An HTTP 200 response if the request succeeds, or an error message if # the request fails. # # @!attribute [rw] job_id # A string that represents the import job ID. # @return [String] # # @!attribute [rw] import_destination # The destination of the import job. # @return [Types::ImportDestination] # # @!attribute [rw] import_data_source # The data source of the import job. # @return [Types::ImportDataSource] # # @!attribute [rw] failure_info # The failure details about an import job. # @return [Types::FailureInfo] # # @!attribute [rw] job_status # The status of the import job. # @return [String] # # @!attribute [rw] created_timestamp # The time stamp of when the import job was created. # @return [Time] # # @!attribute [rw] completed_timestamp # The time stamp of when the import job was completed. # @return [Time] # # @!attribute [rw] processed_records_count # The current number of records processed. # @return [Integer] # # @!attribute [rw] failed_records_count # The number of records that failed processing because of invalid # input or other reasons. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetImportJobResponse AWS API Documentation # class GetImportJobResponse < Struct.new( :job_id, :import_destination, :import_data_source, :failure_info, :job_status, :created_timestamp, :completed_timestamp, :processed_records_count, :failed_records_count) SENSITIVE = [] include Aws::Structure end # A request to retrieve information about an email address that's on # the suppression list for your account. # # @!attribute [rw] email_address # The email address that's on the account suppression list. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetSuppressedDestinationRequest AWS API Documentation # class GetSuppressedDestinationRequest < Struct.new( :email_address) SENSITIVE = [] include Aws::Structure end # Information about the suppressed email address. # # @!attribute [rw] suppressed_destination # An object containing information about the suppressed email address. # @return [Types::SuppressedDestination] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetSuppressedDestinationResponse AWS API Documentation # class GetSuppressedDestinationResponse < Struct.new( :suppressed_destination) SENSITIVE = [] include Aws::Structure end # An object containing additional settings for your VDM configuration as # applicable to the Guardian. # # @!attribute [rw] optimized_shared_delivery # Specifies the status of your VDM optimized shared delivery. Can be # one of the following: # # * `ENABLED` – Amazon SES enables optimized shared delivery for your # account. # # * `DISABLED` – Amazon SES disables optimized shared delivery for # your account. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GuardianAttributes AWS API Documentation # class GuardianAttributes < Struct.new( :optimized_shared_delivery) SENSITIVE = [] include Aws::Structure end # An object containing additional settings for your VDM configuration as # applicable to the Guardian. # # @!attribute [rw] optimized_shared_delivery # Specifies the status of your VDM optimized shared delivery. Can be # one of the following: # # * `ENABLED` – Amazon SES enables optimized shared delivery for the # configuration set. # # * `DISABLED` – Amazon SES disables optimized shared delivery for the # configuration set. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GuardianOptions AWS API Documentation # class GuardianOptions < Struct.new( :optimized_shared_delivery) SENSITIVE = [] include Aws::Structure end # Information about an email identity. # # @!attribute [rw] identity_type # The email identity type. Note: the `MANAGED_DOMAIN` type is not # supported for email identity types. # @return [String] # # @!attribute [rw] identity_name # The address or domain of the identity. # @return [String] # # @!attribute [rw] sending_enabled # Indicates whether or not you can send email from the identity. # # An *identity* is an email address or domain that you send email # from. Before you can send email from an identity, you have to # demostrate that you own the identity, and that you authorize Amazon # SES to send email from that identity. # @return [Boolean] # # @!attribute [rw] verification_status # The verification status of the identity. The status can be one of # the following: # # * `PENDING` – The verification process was initiated, but Amazon SES # hasn't yet been able to verify the identity. # # * `SUCCESS` – The verification process completed successfully. # # * `FAILED` – The verification process failed. # # * `TEMPORARY_FAILURE` – A temporary issue is preventing Amazon SES # from determining the verification status of the identity. # # * `NOT_STARTED` – The verification process hasn't been initiated # for the identity. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/IdentityInfo AWS API Documentation # class IdentityInfo < Struct.new( :identity_type, :identity_name, :sending_enabled, :verification_status) SENSITIVE = [] include Aws::Structure end # An object that contains details about the data source of the import # job. # # @!attribute [rw] s3_url # An Amazon S3 URL in the format # s3://*<bucket\_name>*/*<object>*. # @return [String] # # @!attribute [rw] data_format # The data format of the import job's data source. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ImportDataSource AWS API Documentation # class ImportDataSource < Struct.new( :s3_url, :data_format) SENSITIVE = [] include Aws::Structure end # An object that contains details about the resource destination the # import job is going to target. # # @!attribute [rw] suppression_list_destination # An object that contains the action of the import job towards # suppression list. # @return [Types::SuppressionListDestination] # # @!attribute [rw] contact_list_destination # An object that contains the action of the import job towards a # contact list. # @return [Types::ContactListDestination] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ImportDestination AWS API Documentation # class ImportDestination < Struct.new( :suppression_list_destination, :contact_list_destination) SENSITIVE = [] include Aws::Structure end # A summary of the import job. # # @!attribute [rw] job_id # A string that represents the import job ID. # @return [String] # # @!attribute [rw] import_destination # An object that contains details about the resource destination the # import job is going to target. # @return [Types::ImportDestination] # # @!attribute [rw] job_status # The status of the import job. # @return [String] # # @!attribute [rw] created_timestamp # The date and time when the import job was created. # @return [Time] # # @!attribute [rw] processed_records_count # The current number of records processed. # @return [Integer] # # @!attribute [rw] failed_records_count # The number of records that failed processing because of invalid # input or other reasons. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ImportJobSummary AWS API Documentation # class ImportJobSummary < Struct.new( :job_id, :import_destination, :job_status, :created_timestamp, :processed_records_count, :failed_records_count) SENSITIVE = [] include Aws::Structure end # An object that contains information about the inbox placement data # settings for a verified domain that’s associated with your Amazon Web # Services account. This data is available only if you enabled the # Deliverability dashboard for the domain. # # @!attribute [rw] global # Specifies whether inbox placement data is being tracked for the # domain. # @return [Boolean] # # @!attribute [rw] tracked_isps # An array of strings, one for each major email provider that the # inbox placement data applies to. # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/InboxPlacementTrackingOption AWS API Documentation # class InboxPlacementTrackingOption < Struct.new( :global, :tracked_isps) SENSITIVE = [] include Aws::Structure end # The request couldn't be processed because an error occurred with the # Amazon SES API v2. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/InternalServiceErrorException AWS API Documentation # class InternalServiceErrorException < Aws::EmptyStructure; end # The specified request includes an invalid or expired token. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/InvalidNextTokenException AWS API Documentation # class InvalidNextTokenException < Aws::EmptyStructure; end # An object that describes how email sent during the predictive inbox # placement test was handled by a certain email provider. # # @!attribute [rw] isp_name # The name of the email provider that the inbox placement data applies # to. # @return [String] # # @!attribute [rw] placement_statistics # An object that contains inbox placement metrics for a specific email # provider. # @return [Types::PlacementStatistics] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/IspPlacement AWS API Documentation # class IspPlacement < Struct.new( :isp_name, :placement_statistics) SENSITIVE = [] include Aws::Structure end # An object that defines an Amazon Kinesis Data Firehose destination for # email events. You can use Amazon Kinesis Data Firehose to stream data # to other services, such as Amazon S3 and Amazon Redshift. # # @!attribute [rw] iam_role_arn # The Amazon Resource Name (ARN) of the IAM role that the Amazon SES # API v2 uses to send email events to the Amazon Kinesis Data Firehose # stream. # @return [String] # # @!attribute [rw] delivery_stream_arn # The Amazon Resource Name (ARN) of the Amazon Kinesis Data Firehose # stream that the Amazon SES API v2 sends email events to. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/KinesisFirehoseDestination AWS API Documentation # class KinesisFirehoseDestination < Struct.new( :iam_role_arn, :delivery_stream_arn) SENSITIVE = [] include Aws::Structure end # There are too many instances of the specified resource type. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/LimitExceededException AWS API Documentation # class LimitExceededException < Aws::EmptyStructure; end # A request to obtain a list of configuration sets for your Amazon SES # account in the current Amazon Web Services Region. # # @!attribute [rw] next_token # A token returned from a previous call to `ListConfigurationSets` to # indicate the position in the list of configuration sets. # @return [String] # # @!attribute [rw] page_size # The number of results to show in a single call to # `ListConfigurationSets`. If the number of results is larger than the # number you specified in this parameter, then the response includes a # `NextToken` element, which you can use to obtain additional results. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListConfigurationSetsRequest AWS API Documentation # class ListConfigurationSetsRequest < Struct.new( :next_token, :page_size) SENSITIVE = [] include Aws::Structure end # A list of configuration sets in your Amazon SES account in the current # Amazon Web Services Region. # # @!attribute [rw] configuration_sets # An array that contains all of the configuration sets in your Amazon # SES account in the current Amazon Web Services Region. # @return [Array] # # @!attribute [rw] next_token # A token that indicates that there are additional configuration sets # to list. To view additional configuration sets, issue another # request to `ListConfigurationSets`, and pass this token in the # `NextToken` parameter. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListConfigurationSetsResponse AWS API Documentation # class ListConfigurationSetsResponse < Struct.new( :configuration_sets, :next_token) SENSITIVE = [] include Aws::Structure end # @!attribute [rw] page_size # Maximum number of contact lists to return at once. Use this # parameter to paginate results. If additional contact lists exist # beyond the specified limit, the `NextToken` element is sent in the # response. Use the `NextToken` value in subsequent requests to # retrieve additional lists. # @return [Integer] # # @!attribute [rw] next_token # A string token indicating that there might be additional contact # lists available to be listed. Use the token provided in the Response # to use in the subsequent call to ListContactLists with the same # parameters to retrieve the next page of contact lists. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListContactListsRequest AWS API Documentation # class ListContactListsRequest < Struct.new( :page_size, :next_token) SENSITIVE = [] include Aws::Structure end # @!attribute [rw] contact_lists # The available contact lists. # @return [Array] # # @!attribute [rw] next_token # A string token indicating that there might be additional contact # lists available to be listed. Copy this token to a subsequent call # to `ListContactLists` with the same parameters to retrieve the next # page of contact lists. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListContactListsResponse AWS API Documentation # class ListContactListsResponse < Struct.new( :contact_lists, :next_token) SENSITIVE = [] include Aws::Structure end # A filter that can be applied to a list of contacts. # # @!attribute [rw] filtered_status # The status by which you are filtering: `OPT_IN` or `OPT_OUT`. # @return [String] # # @!attribute [rw] topic_filter # Used for filtering by a specific topic preference. # @return [Types::TopicFilter] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListContactsFilter AWS API Documentation # class ListContactsFilter < Struct.new( :filtered_status, :topic_filter) SENSITIVE = [] include Aws::Structure end # @!attribute [rw] contact_list_name # The name of the contact list. # @return [String] # # @!attribute [rw] filter # A filter that can be applied to a list of contacts. # @return [Types::ListContactsFilter] # # @!attribute [rw] page_size # The number of contacts that may be returned at once, which is # dependent on if there are more or less contacts than the value of # the PageSize. Use this parameter to paginate results. If additional # contacts exist beyond the specified limit, the `NextToken` element # is sent in the response. Use the `NextToken` value in subsequent # requests to retrieve additional contacts. # @return [Integer] # # @!attribute [rw] next_token # A string token indicating that there might be additional contacts # available to be listed. Use the token provided in the Response to # use in the subsequent call to ListContacts with the same parameters # to retrieve the next page of contacts. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListContactsRequest AWS API Documentation # class ListContactsRequest < Struct.new( :contact_list_name, :filter, :page_size, :next_token) SENSITIVE = [] include Aws::Structure end # @!attribute [rw] contacts # The contacts present in a specific contact list. # @return [Array] # # @!attribute [rw] next_token # A string token indicating that there might be additional contacts # available to be listed. Copy this token to a subsequent call to # `ListContacts` with the same parameters to retrieve the next page of # contacts. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListContactsResponse AWS API Documentation # class ListContactsResponse < Struct.new( :contacts, :next_token) SENSITIVE = [] include Aws::Structure end # Represents a request to list the existing custom verification email # templates for your account. # # @!attribute [rw] next_token # A token returned from a previous call to # `ListCustomVerificationEmailTemplates` to indicate the position in # the list of custom verification email templates. # @return [String] # # @!attribute [rw] page_size # The number of results to show in a single call to # `ListCustomVerificationEmailTemplates`. If the number of results is # larger than the number you specified in this parameter, then the # response includes a `NextToken` element, which you can use to obtain # additional results. # # The value you specify has to be at least 1, and can be no more than # 50. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListCustomVerificationEmailTemplatesRequest AWS API Documentation # class ListCustomVerificationEmailTemplatesRequest < Struct.new( :next_token, :page_size) SENSITIVE = [] include Aws::Structure end # The following elements are returned by the service. # # @!attribute [rw] custom_verification_email_templates # A list of the custom verification email templates that exist in your # account. # @return [Array] # # @!attribute [rw] next_token # A token indicating that there are additional custom verification # email templates available to be listed. Pass this token to a # subsequent call to `ListCustomVerificationEmailTemplates` to # retrieve the next 50 custom verification email templates. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListCustomVerificationEmailTemplatesResponse AWS API Documentation # class ListCustomVerificationEmailTemplatesResponse < Struct.new( :custom_verification_email_templates, :next_token) SENSITIVE = [] include Aws::Structure end # A request to obtain a list of dedicated IP pools. # # @!attribute [rw] next_token # A token returned from a previous call to `ListDedicatedIpPools` to # indicate the position in the list of dedicated IP pools. # @return [String] # # @!attribute [rw] page_size # The number of results to show in a single call to # `ListDedicatedIpPools`. If the number of results is larger than the # number you specified in this parameter, then the response includes a # `NextToken` element, which you can use to obtain additional results. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListDedicatedIpPoolsRequest AWS API Documentation # class ListDedicatedIpPoolsRequest < Struct.new( :next_token, :page_size) SENSITIVE = [] include Aws::Structure end # A list of dedicated IP pools. # # @!attribute [rw] dedicated_ip_pools # A list of all of the dedicated IP pools that are associated with # your Amazon Web Services account in the current Region. # @return [Array] # # @!attribute [rw] next_token # A token that indicates that there are additional IP pools to list. # To view additional IP pools, issue another request to # `ListDedicatedIpPools`, passing this token in the `NextToken` # parameter. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListDedicatedIpPoolsResponse AWS API Documentation # class ListDedicatedIpPoolsResponse < Struct.new( :dedicated_ip_pools, :next_token) SENSITIVE = [] include Aws::Structure end # A request to list all of the predictive inbox placement tests that # you've performed. # # @!attribute [rw] next_token # A token returned from a previous call to # `ListDeliverabilityTestReports` to indicate the position in the list # of predictive inbox placement tests. # @return [String] # # @!attribute [rw] page_size # The number of results to show in a single call to # `ListDeliverabilityTestReports`. If the number of results is larger # than the number you specified in this parameter, then the response # includes a `NextToken` element, which you can use to obtain # additional results. # # The value you specify has to be at least 0, and can be no more than # 1000. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListDeliverabilityTestReportsRequest AWS API Documentation # class ListDeliverabilityTestReportsRequest < Struct.new( :next_token, :page_size) SENSITIVE = [] include Aws::Structure end # A list of the predictive inbox placement test reports that are # available for your account, regardless of whether or not those tests # are complete. # # @!attribute [rw] deliverability_test_reports # An object that contains a lists of predictive inbox placement tests # that you've performed. # @return [Array] # # @!attribute [rw] next_token # A token that indicates that there are additional predictive inbox # placement tests to list. To view additional predictive inbox # placement tests, issue another request to # `ListDeliverabilityTestReports`, and pass this token in the # `NextToken` parameter. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListDeliverabilityTestReportsResponse AWS API Documentation # class ListDeliverabilityTestReportsResponse < Struct.new( :deliverability_test_reports, :next_token) SENSITIVE = [] include Aws::Structure end # Retrieve deliverability data for all the campaigns that used a # specific domain to send email during a specified time range. This data # is available for a domain only if you enabled the Deliverability # dashboard. # # @!attribute [rw] start_date # The first day that you want to obtain deliverability data for. # @return [Time] # # @!attribute [rw] end_date # The last day that you want to obtain deliverability data for. This # value has to be less than or equal to 30 days after the value of the # `StartDate` parameter. # @return [Time] # # @!attribute [rw] subscribed_domain # The domain to obtain deliverability data for. # @return [String] # # @!attribute [rw] next_token # A token that’s returned from a previous call to the # `ListDomainDeliverabilityCampaigns` operation. This token indicates # the position of a campaign in the list of campaigns. # @return [String] # # @!attribute [rw] page_size # The maximum number of results to include in response to a single # call to the `ListDomainDeliverabilityCampaigns` operation. If the # number of results is larger than the number that you specify in this # parameter, the response includes a `NextToken` element, which you # can use to obtain additional results. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListDomainDeliverabilityCampaignsRequest AWS API Documentation # class ListDomainDeliverabilityCampaignsRequest < Struct.new( :start_date, :end_date, :subscribed_domain, :next_token, :page_size) SENSITIVE = [] include Aws::Structure end # An array of objects that provide deliverability data for all the # campaigns that used a specific domain to send email during a specified # time range. This data is available for a domain only if you enabled # the Deliverability dashboard for the domain. # # @!attribute [rw] domain_deliverability_campaigns # An array of responses, one for each campaign that used the domain to # send email during the specified time range. # @return [Array] # # @!attribute [rw] next_token # A token that’s returned from a previous call to the # `ListDomainDeliverabilityCampaigns` operation. This token indicates # the position of the campaign in the list of campaigns. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListDomainDeliverabilityCampaignsResponse AWS API Documentation # class ListDomainDeliverabilityCampaignsResponse < Struct.new( :domain_deliverability_campaigns, :next_token) SENSITIVE = [] include Aws::Structure end # A request to list all of the email identities associated with your # Amazon Web Services account. This list includes identities that # you've already verified, identities that are unverified, and # identities that were verified in the past, but are no longer verified. # # @!attribute [rw] next_token # A token returned from a previous call to `ListEmailIdentities` to # indicate the position in the list of identities. # @return [String] # # @!attribute [rw] page_size # The number of results to show in a single call to # `ListEmailIdentities`. If the number of results is larger than the # number you specified in this parameter, then the response includes a # `NextToken` element, which you can use to obtain additional results. # # The value you specify has to be at least 0, and can be no more than # 1000. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListEmailIdentitiesRequest AWS API Documentation # class ListEmailIdentitiesRequest < Struct.new( :next_token, :page_size) SENSITIVE = [] include Aws::Structure end # A list of all of the identities that you've attempted to verify, # regardless of whether or not those identities were successfully # verified. # # @!attribute [rw] email_identities # An array that includes all of the email identities associated with # your Amazon Web Services account. # @return [Array] # # @!attribute [rw] next_token # A token that indicates that there are additional configuration sets # to list. To view additional configuration sets, issue another # request to `ListEmailIdentities`, and pass this token in the # `NextToken` parameter. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListEmailIdentitiesResponse AWS API Documentation # class ListEmailIdentitiesResponse < Struct.new( :email_identities, :next_token) SENSITIVE = [] include Aws::Structure end # Represents a request to list the email templates present in your # Amazon SES account in the current Amazon Web Services Region. For more # information, see the [Amazon SES Developer Guide][1]. # # # # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html # # @!attribute [rw] next_token # A token returned from a previous call to `ListEmailTemplates` to # indicate the position in the list of email templates. # @return [String] # # @!attribute [rw] page_size # The number of results to show in a single call to # `ListEmailTemplates`. If the number of results is larger than the # number you specified in this parameter, then the response includes a # `NextToken` element, which you can use to obtain additional results. # # The value you specify has to be at least 1, and can be no more than # 10. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListEmailTemplatesRequest AWS API Documentation # class ListEmailTemplatesRequest < Struct.new( :next_token, :page_size) SENSITIVE = [] include Aws::Structure end # The following elements are returned by the service. # # @!attribute [rw] templates_metadata # An array the contains the name and creation time stamp for each # template in your Amazon SES account. # @return [Array] # # @!attribute [rw] next_token # A token indicating that there are additional email templates # available to be listed. Pass this token to a subsequent # `ListEmailTemplates` call to retrieve the next 10 email templates. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListEmailTemplatesResponse AWS API Documentation # class ListEmailTemplatesResponse < Struct.new( :templates_metadata, :next_token) SENSITIVE = [] include Aws::Structure end # Represents a request to list all of the import jobs for a data # destination within the specified maximum number of import jobs. # # @!attribute [rw] import_destination_type # The destination of the import job, which can be used to list import # jobs that have a certain `ImportDestinationType`. # @return [String] # # @!attribute [rw] next_token # A string token indicating that there might be additional import jobs # available to be listed. Copy this token to a subsequent call to # `ListImportJobs` with the same parameters to retrieve the next page # of import jobs. # @return [String] # # @!attribute [rw] page_size # Maximum number of import jobs to return at once. Use this parameter # to paginate results. If additional import jobs exist beyond the # specified limit, the `NextToken` element is sent in the response. # Use the `NextToken` value in subsequent requests to retrieve # additional addresses. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListImportJobsRequest AWS API Documentation # class ListImportJobsRequest < Struct.new( :import_destination_type, :next_token, :page_size) SENSITIVE = [] include Aws::Structure end # An HTTP 200 response if the request succeeds, or an error message if # the request fails. # # @!attribute [rw] import_jobs # A list of the import job summaries. # @return [Array] # # @!attribute [rw] next_token # A string token indicating that there might be additional import jobs # available to be listed. Copy this token to a subsequent call to # `ListImportJobs` with the same parameters to retrieve the next page # of import jobs. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListImportJobsResponse AWS API Documentation # class ListImportJobsResponse < Struct.new( :import_jobs, :next_token) SENSITIVE = [] include Aws::Structure end # An object used to specify a list or topic to which an email belongs, # which will be used when a contact chooses to unsubscribe. # # @!attribute [rw] contact_list_name # The name of the contact list. # @return [String] # # @!attribute [rw] topic_name # The name of the topic. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListManagementOptions AWS API Documentation # class ListManagementOptions < Struct.new( :contact_list_name, :topic_name) SENSITIVE = [] include Aws::Structure end # Represents a request to list the existing recommendations for your # account. # # @!attribute [rw] filter # Filters applied when retrieving recommendations. Can eiter be an # individual filter, or combinations of `STATUS` and `IMPACT` or # `STATUS` and `TYPE` # @return [Hash] # # @!attribute [rw] next_token # A token returned from a previous call to `ListRecommendations` to # indicate the position in the list of recommendations. # @return [String] # # @!attribute [rw] page_size # The number of results to show in a single call to # `ListRecommendations`. If the number of results is larger than the # number you specified in this parameter, then the response includes a # `NextToken` element, which you can use to obtain additional results. # # The value you specify has to be at least 1, and can be no more than # 100. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListRecommendationsRequest AWS API Documentation # class ListRecommendationsRequest < Struct.new( :filter, :next_token, :page_size) SENSITIVE = [] include Aws::Structure end # Contains the response to your request to retrieve the list of # recommendations for your account. # # @!attribute [rw] recommendations # The recommendations applicable to your account. # @return [Array] # # @!attribute [rw] next_token # A string token indicating that there might be additional # recommendations available to be listed. Use the token provided in # the `ListRecommendationsResponse` to use in the subsequent call to # `ListRecommendations` with the same parameters to retrieve the next # page of recommendations. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListRecommendationsResponse AWS API Documentation # class ListRecommendationsResponse < Struct.new( :recommendations, :next_token) SENSITIVE = [] include Aws::Structure end # A request to obtain a list of email destinations that are on the # suppression list for your account. # # @!attribute [rw] reasons # The factors that caused the email address to be added to . # @return [Array] # # @!attribute [rw] start_date # Used to filter the list of suppressed email destinations so that it # only includes addresses that were added to the list after a specific # date. # @return [Time] # # @!attribute [rw] end_date # Used to filter the list of suppressed email destinations so that it # only includes addresses that were added to the list before a # specific date. # @return [Time] # # @!attribute [rw] next_token # A token returned from a previous call to # `ListSuppressedDestinations` to indicate the position in the list of # suppressed email addresses. # @return [String] # # @!attribute [rw] page_size # The number of results to show in a single call to # `ListSuppressedDestinations`. If the number of results is larger # than the number you specified in this parameter, then the response # includes a `NextToken` element, which you can use to obtain # additional results. # @return [Integer] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListSuppressedDestinationsRequest AWS API Documentation # class ListSuppressedDestinationsRequest < Struct.new( :reasons, :start_date, :end_date, :next_token, :page_size) SENSITIVE = [] include Aws::Structure end # A list of suppressed email addresses. # # @!attribute [rw] suppressed_destination_summaries # A list of summaries, each containing a summary for a suppressed # email destination. # @return [Array] # # @!attribute [rw] next_token # A token that indicates that there are additional email addresses on # the suppression list for your account. To view additional suppressed # addresses, issue another request to `ListSuppressedDestinations`, # and pass this token in the `NextToken` parameter. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListSuppressedDestinationsResponse AWS API Documentation # class ListSuppressedDestinationsResponse < Struct.new( :suppressed_destination_summaries, :next_token) SENSITIVE = [] include Aws::Structure end # @!attribute [rw] resource_arn # The Amazon Resource Name (ARN) of the resource that you want to # retrieve tag information for. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListTagsForResourceRequest AWS API Documentation # class ListTagsForResourceRequest < Struct.new( :resource_arn) SENSITIVE = [] include Aws::Structure end # @!attribute [rw] tags # An array that lists all the tags that are associated with the # resource. Each tag consists of a required tag key (`Key`) and an # associated tag value (`Value`) # @return [Array] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListTagsForResourceResponse AWS API Documentation # class ListTagsForResourceResponse < Struct.new( :tags) SENSITIVE = [] include Aws::Structure end # A list of attributes that are associated with a MAIL FROM domain. # # @!attribute [rw] mail_from_domain # The name of a domain that an email identity uses as a custom MAIL # FROM domain. # @return [String] # # @!attribute [rw] mail_from_domain_status # The status of the MAIL FROM domain. This status can have the # following values: # # * `PENDING` – Amazon SES hasn't started searching for the MX record # yet. # # * `SUCCESS` – Amazon SES detected the required MX record for the # MAIL FROM domain. # # * `FAILED` – Amazon SES can't find the required MX record, or the # record no longer exists. # # * `TEMPORARY_FAILURE` – A temporary issue occurred, which prevented # Amazon SES from determining the status of the MAIL FROM domain. # @return [String] # # @!attribute [rw] behavior_on_mx_failure # The action to take if the required MX record can't be found when # you send an email. When you set this value to `USE_DEFAULT_VALUE`, # the mail is sent using *amazonses.com* as the MAIL FROM domain. When # you set this value to `REJECT_MESSAGE`, the Amazon SES API v2 # returns a `MailFromDomainNotVerified` error, and doesn't attempt to # deliver the email. # # These behaviors are taken when the custom MAIL FROM domain # configuration is in the `Pending`, `Failed`, and `TemporaryFailure` # states. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/MailFromAttributes AWS API Documentation # class MailFromAttributes < Struct.new( :mail_from_domain, :mail_from_domain_status, :behavior_on_mx_failure) SENSITIVE = [] include Aws::Structure end # The message can't be sent because the sending domain isn't verified. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/MailFromDomainNotVerifiedException AWS API Documentation # class MailFromDomainNotVerifiedException < Aws::EmptyStructure; end # Represents the email message that you're sending. The `Message` # object consists of a subject line and a message body. # # @!attribute [rw] subject # The subject line of the email. The subject line can only contain # 7-bit ASCII characters. However, you can specify non-ASCII # characters in the subject line by using encoded-word syntax, as # described in [RFC 2047][1]. # # # # [1]: https://tools.ietf.org/html/rfc2047 # @return [Types::Content] # # @!attribute [rw] body # The body of the message. You can specify an HTML version of the # message, a text-only version of the message, or both. # @return [Types::Body] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/Message AWS API Documentation # class Message < Struct.new( :subject, :body) SENSITIVE = [] include Aws::Structure end # The message can't be sent because it contains invalid content. # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/MessageRejected AWS API Documentation # class MessageRejected < Aws::EmptyStructure; end # Contains the name and value of a tag that you apply to an email. You # can use message tags when you publish email sending events. # # @!attribute [rw] name # The name of the message tag. The message tag name has to meet the # following criteria: # # * It can only contain ASCII letters (a–z, A–Z), numbers (0–9), # underscores (\_), or dashes (-). # # * It can contain no more than 256 characters. # @return [String] # # @!attribute [rw] value # The value of the message tag. The message tag value has to meet the # following criteria: # # * It can only contain ASCII letters (a–z, A–Z), numbers (0–9), # underscores (\_), or dashes (-). # # * It can contain no more than 256 characters. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/MessageTag AWS API Documentation # class MessageTag < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end # An error corresponding to the unsuccessful processing of a single # metric data query. # # @!attribute [rw] id # The query identifier. # @return [String] # # @!attribute [rw] code # The query error code. Can be one of: # # * `INTERNAL_FAILURE` – Amazon SES has failed to process one of the # queries. # # * `ACCESS_DENIED` – You have insufficient access to retrieve metrics # based on the given query. # @return [String] # # @!attribute [rw] message # The error message associated with the current query error. # @return [String] # # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/MetricDataError AWS API Documentation # class MetricDataError < Struct.new( :id, :code, :message) SENSITIVE = [] include Aws::Structure end # The result of a single metric data query. # # @!attribute [rw] id # The query identifier. # @return [String] # # @!attribute [rw] timestamps # A list of timestamps for the metric data results. # @return [Array