Class: Aws::SES::Client

Inherits:
Seahorse::Client::Base
  • Object
show all
Includes:
ClientStubs
Defined in:
lib/aws-sdk-ses/client.rb

Class Attribute Summary collapse

API Operations collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ Client

Returns a new instance of Client.

Parameters:

  • options (Hash)

Options Hash (options):

  • :credentials (required, Aws::CredentialProvider)

    Your AWS credentials. This can be an instance of any one of the following classes:

    • ‘Aws::Credentials` - Used for configuring static, non-refreshing credentials.

    • ‘Aws::InstanceProfileCredentials` - Used for loading credentials from an EC2 IMDS on an EC2 instance.

    • ‘Aws::SharedCredentials` - Used for loading credentials from a shared file, such as `~/.aws/config`.

    • ‘Aws::AssumeRoleCredentials` - Used when you need to assume a role.

    When ‘:credentials` are not configured directly, the following locations will be searched for credentials:

    • Aws.config`

    • The ‘:access_key_id`, `:secret_access_key`, and `:session_token` options.

    • ENV, ENV

    • ‘~/.aws/credentials`

    • ‘~/.aws/config`

    • EC2 IMDS instance profile - When used by default, the timeouts are very aggressive. Construct and pass an instance of ‘Aws::InstanceProfileCredentails` to enable retries and extended timeouts.

  • :region (required, String)

    The AWS region to connect to. The configured ‘:region` is used to determine the service `:endpoint`. When not passed, a default `:region` is search for in the following locations:

  • :access_key_id (String)
  • :active_endpoint_cache (Boolean) — default: false

    When set to ‘true`, a thread polling for endpoints will be running in the background every 60 secs (default). Defaults to `false`.

  • :client_side_monitoring (Boolean) — default: false

    When ‘true`, client-side metrics will be collected for all API requests from this client.

  • :client_side_monitoring_client_id (String) — default: ""

    Allows you to provide an identifier for this client which will be attached to all generated client side metrics. Defaults to an empty string.

  • :client_side_monitoring_port (Integer) — default: 31000

    Required for publishing client metrics. The port that the client side monitoring agent is running on, where client metrics will be published via UDP.

  • :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher) — default: Aws::ClientSideMonitoring::Publisher

    Allows you to provide a custom client-side monitoring publisher class. By default, will use the Client Side Monitoring Agent Publisher.

  • :convert_params (Boolean) — default: true

    When ‘true`, an attempt is made to coerce request parameters into the required types.

  • :disable_host_prefix_injection (Boolean) — default: false

    Set to true to disable SDK automatically adding host prefix to default service endpoint when available.

  • :endpoint (String)

    The client endpoint is normally constructed from the ‘:region` option. You should only configure an `:endpoint` when connecting to test endpoints. This should be avalid HTTP(S) URI.

  • :endpoint_cache_max_entries (Integer) — default: 1000

    Used for the maximum size limit of the LRU cache storing endpoints data for endpoint discovery enabled operations. Defaults to 1000.

  • :endpoint_cache_max_threads (Integer) — default: 10

    Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.

  • :endpoint_cache_poll_interval (Integer) — default: 60

    When :endpoint_discovery and :active_endpoint_cache is enabled, Use this option to config the time interval in seconds for making requests fetching endpoints information. Defaults to 60 sec.

  • :endpoint_discovery (Boolean) — default: false

    When set to ‘true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.

  • :log_formatter (Aws::Log::Formatter) — default: Aws::Log::Formatter.default

    The log formatter.

  • :log_level (Symbol) — default: :info

    The log level to send messages to the ‘:logger` at.

  • :logger (Logger)

    The Logger instance to send log messages to. If this option is not set, logging will be disabled.

  • :profile (String) — default: "default"

    Used when loading credentials from the shared credentials file at HOME/.aws/credentials. When not specified, ‘default’ is used.

  • :retry_base_delay (Float) — default: 0.3

    The base delay in seconds used by the default backoff function.

  • :retry_jitter (Symbol) — default: :none

    A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.

    @see www.awsarchitectureblog.com/2015/03/backoff.html

  • :retry_limit (Integer) — default: 3

    The maximum number of times to retry failed requests. Only ~ 500 level server errors and certain ~ 400 level client errors are retried. Generally, these are throttling errors, data checksum errors, networking errors, timeout errors and auth errors from expired credentials.

  • :retry_max_delay (Integer) — default: 0

    The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.

  • :secret_access_key (String)
  • :session_token (String)
  • :stub_responses (Boolean) — default: false

    Causes the client to return stubbed responses. By default fake responses are generated and returned. You can specify the response data to return or errors to raise by calling ClientStubs#stub_responses. See ClientStubs for more information.

    ** Please note ** When response stubbing is enabled, no HTTP requests are made, and retries are disabled.

  • :validate_params (Boolean) — default: true

    When ‘true`, request parameters are validated before sending the request.



202
203
204
# File 'lib/aws-sdk-ses/client.rb', line 202

def initialize(*args)
  super
end

Class Attribute Details

.identifierObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



4997
4998
4999
# File 'lib/aws-sdk-ses/client.rb', line 4997

def identifier
  @identifier
end

Class Method Details

.errors_moduleObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



5000
5001
5002
# File 'lib/aws-sdk-ses/client.rb', line 5000

def errors_module
  Errors
end

Instance Method Details

#build_request(operation_name, params = {}) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • params ({}) (defaults to: {})


4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
# File 'lib/aws-sdk-ses/client.rb', line 4862

def build_request(operation_name, params = {})
  handlers = @handlers.for(operation_name)
  context = Seahorse::Client::RequestContext.new(
    operation_name: operation_name,
    operation: config.api.operation(operation_name),
    client: self,
    params: params,
    config: config)
  context[:gem_name] = 'aws-sdk-ses'
  context[:gem_version] = '1.14.0'
  Seahorse::Client::Request.new(handlers, context)
end

#clone_receipt_rule_set(params = {}) ⇒ Struct

Creates a receipt rule set by cloning an existing one. All receipt rules and configurations are copied to the new receipt rule set and are completely independent of the source rule set.

For information about setting up rule sets, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html

Examples:

Example: CloneReceiptRuleSet


# The following example creates a receipt rule set by cloning an existing one:

resp = client.clone_receipt_rule_set({
  original_rule_set_name: "RuleSetToClone", 
  rule_set_name: "RuleSetToCreate", 
})

Request syntax with placeholder values


resp = client.clone_receipt_rule_set({
  rule_set_name: "ReceiptRuleSetName", # required
  original_rule_set_name: "ReceiptRuleSetName", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :rule_set_name (required, String)

    The name of the rule set to create. The name must:

    • This value can only contain ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).

    • Start and end with a letter or number.

    • Contain less than 64 characters.

  • :original_rule_set_name (required, String)

    The name of the rule set to clone.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



257
258
259
260
# File 'lib/aws-sdk-ses/client.rb', line 257

def clone_receipt_rule_set(params = {}, options = {})
  req = build_request(:clone_receipt_rule_set, params)
  req.send_request(options)
end

#create_configuration_set(params = {}) ⇒ Struct

Creates a configuration set.

Configuration sets enable you to publish email sending events. For information about using configuration sets, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html

Examples:

Request syntax with placeholder values


resp = client.create_configuration_set({
  configuration_set: { # required
    name: "ConfigurationSetName", # required
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :configuration_set (required, Types::ConfigurationSet)

    A data structure that contains the name of the configuration set.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



291
292
293
294
# File 'lib/aws-sdk-ses/client.rb', line 291

def create_configuration_set(params = {}, options = {})
  req = build_request(:create_configuration_set, params)
  req.send_request(options)
end

#create_configuration_set_event_destination(params = {}) ⇒ Struct

Creates a configuration set event destination.

<note markdown=“1”> When you create or update an event destination, you must provide one, and only one, destination. The destination can be CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS).

</note>

An event destination is the AWS service to which Amazon SES publishes the email sending events associated with a configuration set. For information about using configuration sets, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html

Examples:

Request syntax with placeholder values


resp = client.create_configuration_set_event_destination({
  configuration_set_name: "ConfigurationSetName", # required
  event_destination: { # required
    name: "EventDestinationName", # required
    enabled: false,
    matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery, open, click, renderingFailure
    kinesis_firehose_destination: {
      iam_role_arn: "AmazonResourceName", # required
      delivery_stream_arn: "AmazonResourceName", # required
    },
    cloud_watch_destination: {
      dimension_configurations: [ # required
        {
          dimension_name: "DimensionName", # required
          dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
          default_dimension_value: "DefaultDimensionValue", # required
        },
      ],
    },
    sns_destination: {
      topic_arn: "AmazonResourceName", # required
    },
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :configuration_set_name (required, String)

    The name of the configuration set that the event destination should be associated with.

  • :event_destination (required, Types::EventDestination)

    An object that describes the AWS service that email sending event information will be published to.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



356
357
358
359
# File 'lib/aws-sdk-ses/client.rb', line 356

def create_configuration_set_event_destination(params = {}, options = {})
  req = build_request(:create_configuration_set_event_destination, params)
  req.send_request(options)
end

#create_configuration_set_tracking_options(params = {}) ⇒ Struct

Creates an association between a configuration set and a custom domain for open and click event tracking.

By default, images and links used for tracking open and click events are hosted on domains operated by Amazon SES. You can configure a subdomain of your own to handle these events. For information about using custom domains, see the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html

Examples:

Request syntax with placeholder values


resp = client.create_configuration_set_tracking_options({
  configuration_set_name: "ConfigurationSetName", # required
  tracking_options: { # required
    custom_redirect_domain: "CustomRedirectDomain",
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :configuration_set_name (required, String)

    The name of the configuration set that the tracking options should be associated with.

  • :tracking_options (required, Types::TrackingOptions)

    A domain that is used to redirect email recipients to an Amazon SES-operated domain. This domain captures open and click events generated by Amazon SES emails.

    For more information, see [Configuring Custom Domains to Handle Open and Click Tracking](ses/latest/DeveloperGuide/configure-custom-open-click-domains.html) in the *Amazon SES Developer Guide*.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



402
403
404
405
# File 'lib/aws-sdk-ses/client.rb', line 402

def create_configuration_set_tracking_options(params = {}, options = {})
  req = build_request(:create_configuration_set_tracking_options, params)
  req.send_request(options)
end

#create_custom_verification_email_template(params = {}) ⇒ Struct

Creates a new custom verification email template.

For more information about custom verification email templates, see

Using Custom Verification Email Templates][1

in the *Amazon SES

Developer Guide*.

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html

Examples:

Request syntax with placeholder values


resp = client.create_custom_verification_email_template({
  template_name: "TemplateName", # required
  from_email_address: "FromAddress", # required
  template_subject: "Subject", # required
  template_content: "TemplateContent", # required
  success_redirection_url: "SuccessRedirectionURL", # required
  failure_redirection_url: "FailureRedirectionURL", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :template_name (required, String)

    The name of the custom verification email template.

  • :from_email_address (required, String)

    The email address that the custom verification email is sent from.

  • :template_subject (required, String)

    The subject line of the custom verification email.

  • :template_content (required, String)

    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] in the *Amazon SES Developer Guide*.

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html#custom-verification-emails-faq

  • :success_redirection_url (required, String)

    The URL that the recipient of the verification email is sent to if his or her address is successfully verified.

  • :failure_redirection_url (required, String)

    The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



463
464
465
466
# File 'lib/aws-sdk-ses/client.rb', line 463

def create_custom_verification_email_template(params = {}, options = {})
  req = build_request(:create_custom_verification_email_template, params)
  req.send_request(options)
end

#create_receipt_filter(params = {}) ⇒ Struct

Creates a new IP address filter.

For information about setting up IP address filters, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html

Examples:

Example: CreateReceiptFilter


# The following example creates a new IP address filter:

resp = client.create_receipt_filter({
  filter: {
    ip_filter: {
      cidr: "1.2.3.4/24", 
      policy: "Allow", 
    }, 
    name: "MyFilter", 
  }, 
})

Request syntax with placeholder values


resp = client.create_receipt_filter({
  filter: { # required
    name: "ReceiptFilterName", # required
    ip_filter: { # required
      policy: "Block", # required, accepts Block, Allow
      cidr: "Cidr", # required
    },
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :filter (required, Types::ReceiptFilter)

    A data structure that describes the IP address filter to create, which consists of a name, an IP address range, and whether to allow or block mail from it.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



517
518
519
520
# File 'lib/aws-sdk-ses/client.rb', line 517

def create_receipt_filter(params = {}, options = {})
  req = build_request(:create_receipt_filter, params)
  req.send_request(options)
end

#create_receipt_rule(params = {}) ⇒ Struct

Creates a receipt rule.

For information about setting up receipt rules, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html

Examples:

Example: CreateReceiptRule


# The following example creates a new receipt rule:

resp = client.create_receipt_rule({
  after: "", 
  rule: {
    actions: [
      {
        s3_action: {
          bucket_name: "MyBucket", 
          object_key_prefix: "email", 
        }, 
      }, 
    ], 
    enabled: true, 
    name: "MyRule", 
    scan_enabled: true, 
    tls_policy: "Optional", 
  }, 
  rule_set_name: "MyRuleSet", 
})

Request syntax with placeholder values


resp = client.create_receipt_rule({
  rule_set_name: "ReceiptRuleSetName", # required
  after: "ReceiptRuleName",
  rule: { # required
    name: "ReceiptRuleName", # required
    enabled: false,
    tls_policy: "Require", # accepts Require, Optional
    recipients: ["Recipient"],
    actions: [
      {
        s3_action: {
          topic_arn: "AmazonResourceName",
          bucket_name: "S3BucketName", # required
          object_key_prefix: "S3KeyPrefix",
          kms_key_arn: "AmazonResourceName",
        },
        bounce_action: {
          topic_arn: "AmazonResourceName",
          smtp_reply_code: "BounceSmtpReplyCode", # required
          status_code: "BounceStatusCode",
          message: "BounceMessage", # required
          sender: "Address", # required
        },
        workmail_action: {
          topic_arn: "AmazonResourceName",
          organization_arn: "AmazonResourceName", # required
        },
        lambda_action: {
          topic_arn: "AmazonResourceName",
          function_arn: "AmazonResourceName", # required
          invocation_type: "Event", # accepts Event, RequestResponse
        },
        stop_action: {
          scope: "RuleSet", # required, accepts RuleSet
          topic_arn: "AmazonResourceName",
        },
        add_header_action: {
          header_name: "HeaderName", # required
          header_value: "HeaderValue", # required
        },
        sns_action: {
          topic_arn: "AmazonResourceName", # required
          encoding: "UTF-8", # accepts UTF-8, Base64
        },
      },
    ],
    scan_enabled: false,
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :rule_set_name (required, String)

    The name of the rule set that the receipt rule will be added to.

  • :after (String)

    The name of an existing rule after which the new rule will be placed. If this parameter is null, the new rule will be inserted at the beginning of the rule list.

  • :rule (required, Types::ReceiptRule)

    A data structure that contains the specified rule’s name, actions, recipients, domains, enabled status, scan status, and TLS policy.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



627
628
629
630
# File 'lib/aws-sdk-ses/client.rb', line 627

def create_receipt_rule(params = {}, options = {})
  req = build_request(:create_receipt_rule, params)
  req.send_request(options)
end

#create_receipt_rule_set(params = {}) ⇒ Struct

Creates an empty receipt rule set.

For information about setting up receipt rule sets, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html

Examples:

Example: CreateReceiptRuleSet


# The following example creates an empty receipt rule set:

resp = client.create_receipt_rule_set({
  rule_set_name: "MyRuleSet", 
})

Request syntax with placeholder values


resp = client.create_receipt_rule_set({
  rule_set_name: "ReceiptRuleSetName", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :rule_set_name (required, String)

    The name of the rule set to create. The name must:

    • This value can only contain ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).

    • Start and end with a letter or number.

    • Contain less than 64 characters.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



674
675
676
677
# File 'lib/aws-sdk-ses/client.rb', line 674

def create_receipt_rule_set(params = {}, options = {})
  req = build_request(:create_receipt_rule_set, params)
  req.send_request(options)
end

#create_template(params = {}) ⇒ Struct

Creates an email template. Email templates enable you to send personalized email to one or more destinations in a single API operation. For more information, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html

Examples:

Request syntax with placeholder values


resp = client.create_template({
  template: { # required
    template_name: "TemplateName", # required
    subject_part: "SubjectPart",
    text_part: "TextPart",
    html_part: "HtmlPart",
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :template (required, Types::Template)

    The content of the email, composed of a subject line, an HTML part, and a text-only part.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



711
712
713
714
# File 'lib/aws-sdk-ses/client.rb', line 711

def create_template(params = {}, options = {})
  req = build_request(:create_template, params)
  req.send_request(options)
end

#delete_configuration_set(params = {}) ⇒ Struct

Deletes a configuration set. Configuration sets enable you to publish email sending events. For information about using configuration sets, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html

Examples:

Request syntax with placeholder values


resp = client.delete_configuration_set({
  configuration_set_name: "ConfigurationSetName", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :configuration_set_name (required, String)

    The name of the configuration set to delete.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



741
742
743
744
# File 'lib/aws-sdk-ses/client.rb', line 741

def delete_configuration_set(params = {}, options = {})
  req = build_request(:delete_configuration_set, params)
  req.send_request(options)
end

#delete_configuration_set_event_destination(params = {}) ⇒ Struct

Deletes a configuration set event destination. Configuration set event destinations are associated with configuration sets, which enable you to publish email sending events. For information about using configuration sets, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html

Examples:

Request syntax with placeholder values


resp = client.delete_configuration_set_event_destination({
  configuration_set_name: "ConfigurationSetName", # required
  event_destination_name: "EventDestinationName", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :configuration_set_name (required, String)

    The name of the configuration set from which to delete the event destination.

  • :event_destination_name (required, String)

    The name of the event destination to delete.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



777
778
779
780
# File 'lib/aws-sdk-ses/client.rb', line 777

def delete_configuration_set_event_destination(params = {}, options = {})
  req = build_request(:delete_configuration_set_event_destination, params)
  req.send_request(options)
end

#delete_configuration_set_tracking_options(params = {}) ⇒ Struct

Deletes an association between a configuration set and a custom domain for open and click event tracking.

By default, images and links used for tracking open and click events are hosted on domains operated by Amazon SES. You can configure a subdomain of your own to handle these events. For information about using custom domains, see the [Amazon SES Developer Guide].

<note markdown=“1”> Deleting this kind of association will result in emails sent using the specified configuration set to capture open and click events using the standard, Amazon SES-operated domains.

</note>

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html

Examples:

Request syntax with placeholder values


resp = client.delete_configuration_set_tracking_options({
  configuration_set_name: "ConfigurationSetName", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :configuration_set_name (required, String)

    The name of the configuration set from which you want to delete the tracking options.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



816
817
818
819
# File 'lib/aws-sdk-ses/client.rb', line 816

def delete_configuration_set_tracking_options(params = {}, options = {})
  req = build_request(:delete_configuration_set_tracking_options, params)
  req.send_request(options)
end

#delete_custom_verification_email_template(params = {}) ⇒ Struct

Deletes an existing custom verification email template.

For more information about custom verification email templates, see

Using Custom Verification Email Templates][1

in the *Amazon SES

Developer Guide*.

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html

Examples:

Request syntax with placeholder values


resp = client.delete_custom_verification_email_template({
  template_name: "TemplateName", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :template_name (required, String)

    The name of the custom verification email template that you want to delete.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



849
850
851
852
# File 'lib/aws-sdk-ses/client.rb', line 849

def delete_custom_verification_email_template(params = {}, options = {})
  req = build_request(:delete_custom_verification_email_template, params)
  req.send_request(options)
end

#delete_identity(params = {}) ⇒ Struct

Deletes the specified identity (an email address or a domain) from the list of verified identities.

You can execute this operation no more than once per second.

Examples:

Example: DeleteIdentity


# The following example deletes an identity from the list of identities that have been submitted for verification with
# Amazon SES:

resp = client.delete_identity({
  identity: "[email protected]", 
})

Request syntax with placeholder values


resp = client.delete_identity({
  identity: "Identity", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identity (required, String)

    The identity to be removed from the list of identities for the AWS Account.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



885
886
887
888
# File 'lib/aws-sdk-ses/client.rb', line 885

def delete_identity(params = {}, options = {})
  req = build_request(:delete_identity, params)
  req.send_request(options)
end

#delete_identity_policy(params = {}) ⇒ Struct

Deletes the specified sending authorization policy for the given identity (an email address or a domain). This API returns successfully even if a policy with the specified name does not exist.

<note markdown=“1”> This API is for the identity owner only. If you have not verified the identity, this API will return an error.

</note>

Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html

Examples:

Example: DeleteIdentityPolicy


# The following example deletes a sending authorization policy for an identity:

resp = client.delete_identity_policy({
  identity: "[email protected]", 
  policy_name: "MyPolicy", 
})

Request syntax with placeholder values


resp = client.delete_identity_policy({
  identity: "Identity", # required
  policy_name: "PolicyName", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identity (required, String)

    The identity that is associated with the policy that you want to delete. You can specify the identity by using its name or by using its Amazon Resource Name (ARN). Examples: ‘[email protected]`, `example.com`, `arn:aws:ses:us-east-1:123456789012:identity/example.com`.

    To successfully call this API, you must own the identity.

  • :policy_name (required, String)

    The name of the policy to be deleted.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



944
945
946
947
# File 'lib/aws-sdk-ses/client.rb', line 944

def delete_identity_policy(params = {}, options = {})
  req = build_request(:delete_identity_policy, params)
  req.send_request(options)
end

#delete_receipt_filter(params = {}) ⇒ Struct

Deletes the specified IP address filter.

For information about managing IP address filters, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-ip-filters.html

Examples:

Example: DeleteReceiptFilter


# The following example deletes an IP address filter:

resp = client.delete_receipt_filter({
  filter_name: "MyFilter", 
})

Request syntax with placeholder values


resp = client.delete_receipt_filter({
  filter_name: "ReceiptFilterName", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :filter_name (required, String)

    The name of the IP address filter to delete.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



984
985
986
987
# File 'lib/aws-sdk-ses/client.rb', line 984

def delete_receipt_filter(params = {}, options = {})
  req = build_request(:delete_receipt_filter, params)
  req.send_request(options)
end

#delete_receipt_rule(params = {}) ⇒ Struct

Deletes the specified receipt rule.

For information about managing receipt rules, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html

Examples:

Example: DeleteReceiptRule


# The following example deletes a receipt rule:

resp = client.delete_receipt_rule({
  rule_name: "MyRule", 
  rule_set_name: "MyRuleSet", 
})

Request syntax with placeholder values


resp = client.delete_receipt_rule({
  rule_set_name: "ReceiptRuleSetName", # required
  rule_name: "ReceiptRuleName", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :rule_set_name (required, String)

    The name of the receipt rule set that contains the receipt rule to delete.

  • :rule_name (required, String)

    The name of the receipt rule to delete.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1030
1031
1032
1033
# File 'lib/aws-sdk-ses/client.rb', line 1030

def delete_receipt_rule(params = {}, options = {})
  req = build_request(:delete_receipt_rule, params)
  req.send_request(options)
end

#delete_receipt_rule_set(params = {}) ⇒ Struct

Deletes the specified receipt rule set and all of the receipt rules it contains.

<note markdown=“1”> The currently active rule set cannot be deleted.

</note>

For information about managing receipt rule sets, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html

Examples:

Example: DeleteReceiptRuleSet


# The following example deletes a receipt rule set:

resp = client.delete_receipt_rule_set({
  rule_set_name: "MyRuleSet", 
})

Request syntax with placeholder values


resp = client.delete_receipt_rule_set({
  rule_set_name: "ReceiptRuleSetName", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :rule_set_name (required, String)

    The name of the receipt rule set to delete.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1075
1076
1077
1078
# File 'lib/aws-sdk-ses/client.rb', line 1075

def delete_receipt_rule_set(params = {}, options = {})
  req = build_request(:delete_receipt_rule_set, params)
  req.send_request(options)
end

#delete_template(params = {}) ⇒ Struct

Deletes an email template.

You can execute this operation no more than once per second.

Examples:

Request syntax with placeholder values


resp = client.delete_template({
  template_name: "TemplateName", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :template_name (required, String)

    The name of the template to be deleted.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1099
1100
1101
1102
# File 'lib/aws-sdk-ses/client.rb', line 1099

def delete_template(params = {}, options = {})
  req = build_request(:delete_template, params)
  req.send_request(options)
end

#delete_verified_email_address(params = {}) ⇒ Struct

Deprecated. Use the ‘DeleteIdentity` operation to delete email addresses and domains.

Examples:

Example: DeleteVerifiedEmailAddress


# The following example deletes an email address from the list of identities that have been submitted for verification
# with Amazon SES:

resp = client.delete_verified_email_address({
  email_address: "[email protected]", 
})

Request syntax with placeholder values


resp = client.delete_verified_email_address({
  email_address: "Address", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :email_address (required, String)

    An email address to be removed from the list of verified addresses.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1132
1133
1134
1135
# File 'lib/aws-sdk-ses/client.rb', line 1132

def delete_verified_email_address(params = {}, options = {})
  req = build_request(:delete_verified_email_address, params)
  req.send_request(options)
end

#describe_active_receipt_rule_set(params = {}) ⇒ Types::DescribeActiveReceiptRuleSetResponse

Returns the metadata and receipt rules for the receipt rule set that is currently active.

For information about setting up receipt rule sets, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html

Examples:

Example: DescribeActiveReceiptRuleSet


# The following example returns the metadata and receipt rules for the receipt rule set that is currently active:

resp = client.describe_active_receipt_rule_set({
})

resp.to_h outputs the following:
{
  metadata: {
    created_timestamp: Time.parse("2016-07-15T16:25:59.607Z"), 
    name: "default-rule-set", 
  }, 
  rules: [
    {
      actions: [
        {
          s3_action: {
            bucket_name: "MyBucket", 
            object_key_prefix: "email", 
          }, 
        }, 
      ], 
      enabled: true, 
      name: "MyRule", 
      scan_enabled: true, 
      tls_policy: "Optional", 
    }, 
  ], 
}

Response structure


resp..name #=> String
resp..created_timestamp #=> Time
resp.rules #=> Array
resp.rules[0].name #=> String
resp.rules[0].enabled #=> Boolean
resp.rules[0].tls_policy #=> String, one of "Require", "Optional"
resp.rules[0].recipients #=> Array
resp.rules[0].recipients[0] #=> String
resp.rules[0].actions #=> Array
resp.rules[0].actions[0].s3_action.topic_arn #=> String
resp.rules[0].actions[0].s3_action.bucket_name #=> String
resp.rules[0].actions[0].s3_action.object_key_prefix #=> String
resp.rules[0].actions[0].s3_action.kms_key_arn #=> String
resp.rules[0].actions[0].bounce_action.topic_arn #=> String
resp.rules[0].actions[0].bounce_action.smtp_reply_code #=> String
resp.rules[0].actions[0].bounce_action.status_code #=> String
resp.rules[0].actions[0].bounce_action.message #=> String
resp.rules[0].actions[0].bounce_action.sender #=> String
resp.rules[0].actions[0].workmail_action.topic_arn #=> String
resp.rules[0].actions[0].workmail_action.organization_arn #=> String
resp.rules[0].actions[0].lambda_action.topic_arn #=> String
resp.rules[0].actions[0].lambda_action.function_arn #=> String
resp.rules[0].actions[0].lambda_action.invocation_type #=> String, one of "Event", "RequestResponse"
resp.rules[0].actions[0].stop_action.scope #=> String, one of "RuleSet"
resp.rules[0].actions[0].stop_action.topic_arn #=> String
resp.rules[0].actions[0].add_header_action.header_name #=> String
resp.rules[0].actions[0].add_header_action.header_value #=> String
resp.rules[0].actions[0].sns_action.topic_arn #=> String
resp.rules[0].actions[0].sns_action.encoding #=> String, one of "UTF-8", "Base64"
resp.rules[0].scan_enabled #=> Boolean

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Returns:

See Also:



1223
1224
1225
1226
# File 'lib/aws-sdk-ses/client.rb', line 1223

def describe_active_receipt_rule_set(params = {}, options = {})
  req = build_request(:describe_active_receipt_rule_set, params)
  req.send_request(options)
end

#describe_configuration_set(params = {}) ⇒ Types::DescribeConfigurationSetResponse

Returns the details of the specified configuration set. For information about using configuration sets, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html

Examples:

Request syntax with placeholder values


resp = client.describe_configuration_set({
  configuration_set_name: "ConfigurationSetName", # required
  configuration_set_attribute_names: ["eventDestinations"], # accepts eventDestinations, trackingOptions, reputationOptions
})

Response structure


resp.configuration_set.name #=> String
resp.event_destinations #=> Array
resp.event_destinations[0].name #=> String
resp.event_destinations[0].enabled #=> Boolean
resp.event_destinations[0].matching_event_types #=> Array
resp.event_destinations[0].matching_event_types[0] #=> String, one of "send", "reject", "bounce", "complaint", "delivery", "open", "click", "renderingFailure"
resp.event_destinations[0].kinesis_firehose_destination.iam_role_arn #=> String
resp.event_destinations[0].kinesis_firehose_destination.delivery_stream_arn #=> String
resp.event_destinations[0].cloud_watch_destination.dimension_configurations #=> Array
resp.event_destinations[0].cloud_watch_destination.dimension_configurations[0].dimension_name #=> String
resp.event_destinations[0].cloud_watch_destination.dimension_configurations[0].dimension_value_source #=> String, one of "messageTag", "emailHeader", "linkTag"
resp.event_destinations[0].cloud_watch_destination.dimension_configurations[0].default_dimension_value #=> String
resp.event_destinations[0].sns_destination.topic_arn #=> String
resp.tracking_options.custom_redirect_domain #=> String
resp.reputation_options.sending_enabled #=> Boolean
resp.reputation_options.reputation_metrics_enabled #=> Boolean
resp.reputation_options.last_fresh_start #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :configuration_set_name (required, String)

    The name of the configuration set to describe.

  • :configuration_set_attribute_names (Array<String>)

    A list of configuration set attributes to return.

Returns:

See Also:



1282
1283
1284
1285
# File 'lib/aws-sdk-ses/client.rb', line 1282

def describe_configuration_set(params = {}, options = {})
  req = build_request(:describe_configuration_set, params)
  req.send_request(options)
end

#describe_receipt_rule(params = {}) ⇒ Types::DescribeReceiptRuleResponse

Returns the details of the specified receipt rule.

For information about setting up receipt rules, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html

Examples:

Example: DescribeReceiptRule


# The following example returns the details of a receipt rule:

resp = client.describe_receipt_rule({
  rule_name: "MyRule", 
  rule_set_name: "MyRuleSet", 
})

resp.to_h outputs the following:
{
  rule: {
    actions: [
      {
        s3_action: {
          bucket_name: "MyBucket", 
          object_key_prefix: "email", 
        }, 
      }, 
    ], 
    enabled: true, 
    name: "MyRule", 
    scan_enabled: true, 
    tls_policy: "Optional", 
  }, 
}

Request syntax with placeholder values


resp = client.describe_receipt_rule({
  rule_set_name: "ReceiptRuleSetName", # required
  rule_name: "ReceiptRuleName", # required
})

Response structure


resp.rule.name #=> String
resp.rule.enabled #=> Boolean
resp.rule.tls_policy #=> String, one of "Require", "Optional"
resp.rule.recipients #=> Array
resp.rule.recipients[0] #=> String
resp.rule.actions #=> Array
resp.rule.actions[0].s3_action.topic_arn #=> String
resp.rule.actions[0].s3_action.bucket_name #=> String
resp.rule.actions[0].s3_action.object_key_prefix #=> String
resp.rule.actions[0].s3_action.kms_key_arn #=> String
resp.rule.actions[0].bounce_action.topic_arn #=> String
resp.rule.actions[0].bounce_action.smtp_reply_code #=> String
resp.rule.actions[0].bounce_action.status_code #=> String
resp.rule.actions[0].bounce_action.message #=> String
resp.rule.actions[0].bounce_action.sender #=> String
resp.rule.actions[0].workmail_action.topic_arn #=> String
resp.rule.actions[0].workmail_action.organization_arn #=> String
resp.rule.actions[0].lambda_action.topic_arn #=> String
resp.rule.actions[0].lambda_action.function_arn #=> String
resp.rule.actions[0].lambda_action.invocation_type #=> String, one of "Event", "RequestResponse"
resp.rule.actions[0].stop_action.scope #=> String, one of "RuleSet"
resp.rule.actions[0].stop_action.topic_arn #=> String
resp.rule.actions[0].add_header_action.header_name #=> String
resp.rule.actions[0].add_header_action.header_value #=> String
resp.rule.actions[0].sns_action.topic_arn #=> String
resp.rule.actions[0].sns_action.encoding #=> String, one of "UTF-8", "Base64"
resp.rule.scan_enabled #=> Boolean

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :rule_set_name (required, String)

    The name of the receipt rule set that the receipt rule belongs to.

  • :rule_name (required, String)

    The name of the receipt rule.

Returns:

See Also:



1377
1378
1379
1380
# File 'lib/aws-sdk-ses/client.rb', line 1377

def describe_receipt_rule(params = {}, options = {})
  req = build_request(:describe_receipt_rule, params)
  req.send_request(options)
end

#describe_receipt_rule_set(params = {}) ⇒ Types::DescribeReceiptRuleSetResponse

Returns the details of the specified receipt rule set.

For information about managing receipt rule sets, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html

Examples:

Example: DescribeReceiptRuleSet


# The following example returns the metadata and receipt rules of a receipt rule set:

resp = client.describe_receipt_rule_set({
  rule_set_name: "MyRuleSet", 
})

resp.to_h outputs the following:
{
  metadata: {
    created_timestamp: Time.parse("2016-07-15T16:25:59.607Z"), 
    name: "MyRuleSet", 
  }, 
  rules: [
    {
      actions: [
        {
          s3_action: {
            bucket_name: "MyBucket", 
            object_key_prefix: "email", 
          }, 
        }, 
      ], 
      enabled: true, 
      name: "MyRule", 
      scan_enabled: true, 
      tls_policy: "Optional", 
    }, 
  ], 
}

Request syntax with placeholder values


resp = client.describe_receipt_rule_set({
  rule_set_name: "ReceiptRuleSetName", # required
})

Response structure


resp..name #=> String
resp..created_timestamp #=> Time
resp.rules #=> Array
resp.rules[0].name #=> String
resp.rules[0].enabled #=> Boolean
resp.rules[0].tls_policy #=> String, one of "Require", "Optional"
resp.rules[0].recipients #=> Array
resp.rules[0].recipients[0] #=> String
resp.rules[0].actions #=> Array
resp.rules[0].actions[0].s3_action.topic_arn #=> String
resp.rules[0].actions[0].s3_action.bucket_name #=> String
resp.rules[0].actions[0].s3_action.object_key_prefix #=> String
resp.rules[0].actions[0].s3_action.kms_key_arn #=> String
resp.rules[0].actions[0].bounce_action.topic_arn #=> String
resp.rules[0].actions[0].bounce_action.smtp_reply_code #=> String
resp.rules[0].actions[0].bounce_action.status_code #=> String
resp.rules[0].actions[0].bounce_action.message #=> String
resp.rules[0].actions[0].bounce_action.sender #=> String
resp.rules[0].actions[0].workmail_action.topic_arn #=> String
resp.rules[0].actions[0].workmail_action.organization_arn #=> String
resp.rules[0].actions[0].lambda_action.topic_arn #=> String
resp.rules[0].actions[0].lambda_action.function_arn #=> String
resp.rules[0].actions[0].lambda_action.invocation_type #=> String, one of "Event", "RequestResponse"
resp.rules[0].actions[0].stop_action.scope #=> String, one of "RuleSet"
resp.rules[0].actions[0].stop_action.topic_arn #=> String
resp.rules[0].actions[0].add_header_action.header_name #=> String
resp.rules[0].actions[0].add_header_action.header_value #=> String
resp.rules[0].actions[0].sns_action.topic_arn #=> String
resp.rules[0].actions[0].sns_action.encoding #=> String, one of "UTF-8", "Base64"
resp.rules[0].scan_enabled #=> Boolean

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :rule_set_name (required, String)

    The name of the receipt rule set to describe.

Returns:

See Also:



1477
1478
1479
1480
# File 'lib/aws-sdk-ses/client.rb', line 1477

def describe_receipt_rule_set(params = {}, options = {})
  req = build_request(:describe_receipt_rule_set, params)
  req.send_request(options)
end

#get_account_sending_enabled(params = {}) ⇒ Types::GetAccountSendingEnabledResponse

Returns the email sending status of the Amazon SES account for the current region.

You can execute this operation no more than once per second.

Examples:

Example: GetAccountSendingEnabled


# The following example returns if sending status for an account is enabled. (true / false):

resp = client.({
})

resp.to_h outputs the following:
{
  enabled: true, 
}

Response structure


resp.enabled #=> Boolean

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Returns:

See Also:



1512
1513
1514
1515
# File 'lib/aws-sdk-ses/client.rb', line 1512

def (params = {}, options = {})
  req = build_request(:get_account_sending_enabled, params)
  req.send_request(options)
end

#get_custom_verification_email_template(params = {}) ⇒ Types::GetCustomVerificationEmailTemplateResponse

Returns the custom email verification template for the template name you specify.

For more information about custom verification email templates, see

Using Custom Verification Email Templates][1

in the *Amazon SES

Developer Guide*.

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html

Examples:

Request syntax with placeholder values


resp = client.get_custom_verification_email_template({
  template_name: "TemplateName", # required
})

Response structure


resp.template_name #=> String
resp.from_email_address #=> String
resp.template_subject #=> String
resp.template_content #=> String
resp.success_redirection_url #=> String
resp.failure_redirection_url #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :template_name (required, String)

    The name of the custom verification email template that you want to retrieve.

Returns:

See Also:



1562
1563
1564
1565
# File 'lib/aws-sdk-ses/client.rb', line 1562

def get_custom_verification_email_template(params = {}, options = {})
  req = build_request(:get_custom_verification_email_template, params)
  req.send_request(options)
end

#get_identity_dkim_attributes(params = {}) ⇒ Types::GetIdentityDkimAttributesResponse

Returns the current status of Easy DKIM signing for an entity. For domain name identities, this operation also returns the DKIM tokens that are required for Easy DKIM signing, and whether Amazon SES has successfully verified that these tokens have been published.

This operation takes a list of identities as input and returns the following information for each:

  • Whether Easy DKIM signing is enabled or disabled.

  • A set of DKIM tokens that represent the identity. If the identity is an email address, the tokens represent the domain of that address.

  • Whether Amazon SES has successfully verified the DKIM tokens published in the domain’s DNS. This information is only returned for domain name identities, not for email addresses.

This operation is throttled at one request per second and can only get DKIM attributes for up to 100 identities at a time.

For more information about creating DNS records using DKIM tokens, go to the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html

Examples:

Example: GetIdentityDkimAttributes


# The following example retrieves the Amazon SES Easy DKIM attributes for a list of identities:

resp = client.get_identity_dkim_attributes({
  identities: [
    "example.com", 
    "[email protected]", 
  ], 
})

resp.to_h outputs the following:
{
  dkim_attributes: {
    "example.com" => {
      dkim_enabled: true, 
      dkim_tokens: [
        "EXAMPLEjcs5xoyqytjsotsijas7236gr", 
        "EXAMPLEjr76cvoc6mysspnioorxsn6ep", 
        "EXAMPLEkbmkqkhlm2lyz77ppkulerm4k", 
      ], 
      dkim_verification_status: "Success", 
    }, 
    "[email protected]" => {
      dkim_enabled: false, 
      dkim_verification_status: "NotStarted", 
    }, 
  }, 
}

Request syntax with placeholder values


resp = client.get_identity_dkim_attributes({
  identities: ["Identity"], # required
})

Response structure


resp.dkim_attributes #=> Hash
resp.dkim_attributes["Identity"].dkim_enabled #=> Boolean
resp.dkim_attributes["Identity"].dkim_verification_status #=> String, one of "Pending", "Success", "Failed", "TemporaryFailure", "NotStarted"
resp.dkim_attributes["Identity"].dkim_tokens #=> Array
resp.dkim_attributes["Identity"].dkim_tokens[0] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identities (required, Array<String>)

    A list of one or more verified identities - email addresses, domains, or both.

Returns:

See Also:



1651
1652
1653
1654
# File 'lib/aws-sdk-ses/client.rb', line 1651

def get_identity_dkim_attributes(params = {}, options = {})
  req = build_request(:get_identity_dkim_attributes, params)
  req.send_request(options)
end

#get_identity_mail_from_domain_attributes(params = {}) ⇒ Types::GetIdentityMailFromDomainAttributesResponse

Returns the custom MAIL FROM attributes for a list of identities (email addresses : domains).

This operation is throttled at one request per second and can only get custom MAIL FROM attributes for up to 100 identities at a time.

Examples:

Example: GetIdentityMailFromDomainAttributes


# The following example returns the custom MAIL FROM attributes for an identity:

resp = client.get_identity_mail_from_domain_attributes({
  identities: [
    "example.com", 
  ], 
})

resp.to_h outputs the following:
{
  mail_from_domain_attributes: {
    "example.com" => {
      behavior_on_mx_failure: "UseDefaultValue", 
      mail_from_domain: "bounces.example.com", 
      mail_from_domain_status: "Success", 
    }, 
  }, 
}

Request syntax with placeholder values


resp = client.get_identity_mail_from_domain_attributes({
  identities: ["Identity"], # required
})

Response structure


resp.mail_from_domain_attributes #=> Hash
resp.mail_from_domain_attributes["Identity"].mail_from_domain #=> String
resp.mail_from_domain_attributes["Identity"].mail_from_domain_status #=> String, one of "Pending", "Success", "Failed", "TemporaryFailure"
resp.mail_from_domain_attributes["Identity"].behavior_on_mx_failure #=> String, one of "UseDefaultValue", "RejectMessage"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identities (required, Array<String>)

    A list of one or more identities.

Returns:

See Also:



1708
1709
1710
1711
# File 'lib/aws-sdk-ses/client.rb', line 1708

def get_identity_mail_from_domain_attributes(params = {}, options = {})
  req = build_request(:get_identity_mail_from_domain_attributes, params)
  req.send_request(options)
end

#get_identity_notification_attributes(params = {}) ⇒ Types::GetIdentityNotificationAttributesResponse

Given a list of verified identities (email addresses and/or domains), returns a structure describing identity notification attributes.

This operation is throttled at one request per second and can only get notification attributes for up to 100 identities at a time.

For more information about using notifications with Amazon SES, see the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html

Examples:

Example: GetIdentityNotificationAttributes


# The following example returns the notification attributes for an identity:

resp = client.get_identity_notification_attributes({
  identities: [
    "example.com", 
  ], 
})

resp.to_h outputs the following:
{
  notification_attributes: {
    "example.com" => {
      bounce_topic: "arn:aws:sns:us-east-1:EXAMPLE65304:ExampleTopic", 
      complaint_topic: "arn:aws:sns:us-east-1:EXAMPLE65304:ExampleTopic", 
      delivery_topic: "arn:aws:sns:us-east-1:EXAMPLE65304:ExampleTopic", 
      forwarding_enabled: true, 
      headers_in_bounce_notifications_enabled: false, 
      headers_in_complaint_notifications_enabled: false, 
      headers_in_delivery_notifications_enabled: false, 
    }, 
  }, 
}

Request syntax with placeholder values


resp = client.get_identity_notification_attributes({
  identities: ["Identity"], # required
})

Response structure


resp.notification_attributes #=> Hash
resp.notification_attributes["Identity"].bounce_topic #=> String
resp.notification_attributes["Identity"].complaint_topic #=> String
resp.notification_attributes["Identity"].delivery_topic #=> String
resp.notification_attributes["Identity"].forwarding_enabled #=> Boolean
resp.notification_attributes["Identity"].headers_in_bounce_notifications_enabled #=> Boolean
resp.notification_attributes["Identity"].headers_in_complaint_notifications_enabled #=> Boolean
resp.notification_attributes["Identity"].headers_in_delivery_notifications_enabled #=> Boolean

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identities (required, Array<String>)

    A list of one or more identities. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: ‘[email protected]`, `example.com`, `arn:aws:ses:us-east-1:123456789012:identity/example.com`.

Returns:

See Also:



1783
1784
1785
1786
# File 'lib/aws-sdk-ses/client.rb', line 1783

def get_identity_notification_attributes(params = {}, options = {})
  req = build_request(:get_identity_notification_attributes, params)
  req.send_request(options)
end

#get_identity_policies(params = {}) ⇒ Types::GetIdentityPoliciesResponse

Returns the requested sending authorization policies for the given identity (an email address or a domain). The policies are returned as a map of policy names to policy contents. You can retrieve a maximum of 20 policies at a time.

<note markdown=“1”> This API is for the identity owner only. If you have not verified the identity, this API will return an error.

</note>

Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html

Examples:

Example: GetIdentityPolicies


# The following example returns a sending authorization policy for an identity:

resp = client.get_identity_policies({
  identity: "example.com", 
  policy_names: [
    "MyPolicy", 
  ], 
})

resp.to_h outputs the following:
{
  policies: {
    "MyPolicy" => "{\"Version\":\"2008-10-17\",\"Statement\":[{\"Sid\":\"stmt1469123904194\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::123456789012:root\"},\"Action\":[\"ses:SendEmail\",\"ses:SendRawEmail\"],\"Resource\":\"arn:aws:ses:us-east-1:EXAMPLE65304:identity/example.com\"}]}", 
  }, 
}

Request syntax with placeholder values


resp = client.get_identity_policies({
  identity: "Identity", # required
  policy_names: ["PolicyName"], # required
})

Response structure


resp.policies #=> Hash
resp.policies["PolicyName"] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identity (required, String)

    The identity for which the policies will be retrieved. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: ‘[email protected]`, `example.com`, `arn:aws:ses:us-east-1:123456789012:identity/example.com`.

    To successfully call this API, you must own the identity.

  • :policy_names (required, Array<String>)

    A list of the names of policies to be retrieved. You can retrieve a maximum of 20 policies at a time. If you do not know the names of the policies that are attached to the identity, you can use ‘ListIdentityPolicies`.

Returns:

See Also:



1861
1862
1863
1864
# File 'lib/aws-sdk-ses/client.rb', line 1861

def get_identity_policies(params = {}, options = {})
  req = build_request(:get_identity_policies, params)
  req.send_request(options)
end

#get_identity_verification_attributes(params = {}) ⇒ Types::GetIdentityVerificationAttributesResponse

Given a list of identities (email addresses and/or domains), returns the verification status and (for domain identities) the verification token for each identity.

The verification status of an email address is “Pending” until the email address owner clicks the link within the verification email that Amazon SES sent to that address. If the email address owner clicks the link within 24 hours, the verification status of the email address changes to “Success”. If the link is not clicked within 24 hours, the verification status changes to “Failed.” In that case, if you still want to verify the email address, you must restart the verification process from the beginning.

For domain identities, the domain’s verification status is “Pending” as Amazon SES searches for the required TXT record in the DNS settings of the domain. When Amazon SES detects the record, the domain’s verification status changes to “Success”. If Amazon SES is unable to detect the record within 72 hours, the domain’s verification status changes to “Failed.” In that case, if you still want to verify the domain, you must restart the verification process from the beginning.

This operation is throttled at one request per second and can only get verification attributes for up to 100 identities at a time.

Examples:

Example: GetIdentityVerificationAttributes


# The following example returns the verification status and the verification token for a domain identity:

resp = client.get_identity_verification_attributes({
  identities: [
    "example.com", 
  ], 
})

resp.to_h outputs the following:
{
  verification_attributes: {
    "example.com" => {
      verification_status: "Success", 
      verification_token: "EXAMPLE3VYb9EDI2nTOQRi/Tf6MI/6bD6THIGiP1MVY=", 
    }, 
  }, 
}

Request syntax with placeholder values


resp = client.get_identity_verification_attributes({
  identities: ["Identity"], # required
})

Response structure


resp.verification_attributes #=> Hash
resp.verification_attributes["Identity"].verification_status #=> String, one of "Pending", "Success", "Failed", "TemporaryFailure", "NotStarted"
resp.verification_attributes["Identity"].verification_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identities (required, Array<String>)

    A list of identities.

Returns:

See Also:



1935
1936
1937
1938
# File 'lib/aws-sdk-ses/client.rb', line 1935

def get_identity_verification_attributes(params = {}, options = {})
  req = build_request(:get_identity_verification_attributes, params)
  req.send_request(options)
end

#get_send_quota(params = {}) ⇒ Types::GetSendQuotaResponse

Provides the sending limits for the Amazon SES account.

You can execute this operation no more than once per second.

Examples:

Example: GetSendQuota


# The following example returns the Amazon SES sending limits for an AWS account:

resp = client.get_send_quota({
})

resp.to_h outputs the following:
{
  max_24_hour_send: 200, 
  max_send_rate: 1, 
  sent_last_24_hours: 1, 
}

Response structure


resp.max_24_hour_send #=> Float
resp.max_send_rate #=> Float
resp.sent_last_24_hours #=> Float

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Returns:

See Also:



1975
1976
1977
1978
# File 'lib/aws-sdk-ses/client.rb', line 1975

def get_send_quota(params = {}, options = {})
  req = build_request(:get_send_quota, params)
  req.send_request(options)
end

#get_send_statistics(params = {}) ⇒ Types::GetSendStatisticsResponse

Provides sending statistics for the current AWS Region. The result is a list of data points, representing the last two weeks of sending activity. Each data point in the list contains statistics for a 15-minute period of time.

You can execute this operation no more than once per second.

Examples:

Example: GetSendStatistics


# The following example returns Amazon SES sending statistics:

resp = client.get_send_statistics({
})

resp.to_h outputs the following:
{
  send_data_points: [
    {
      bounces: 0, 
      complaints: 0, 
      delivery_attempts: 5, 
      rejects: 0, 
      timestamp: Time.parse("2016-07-13T22:43:00Z"), 
    }, 
    {
      bounces: 0, 
      complaints: 0, 
      delivery_attempts: 3, 
      rejects: 0, 
      timestamp: Time.parse("2016-07-13T23:13:00Z"), 
    }, 
    {
      bounces: 0, 
      complaints: 0, 
      delivery_attempts: 1, 
      rejects: 0, 
      timestamp: Time.parse("2016-07-13T21:13:00Z"), 
    }, 
  ], 
}

Response structure


resp.send_data_points #=> Array
resp.send_data_points[0].timestamp #=> Time
resp.send_data_points[0].delivery_attempts #=> Integer
resp.send_data_points[0].bounces #=> Integer
resp.send_data_points[0].complaints #=> Integer
resp.send_data_points[0].rejects #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Returns:

See Also:



2039
2040
2041
2042
# File 'lib/aws-sdk-ses/client.rb', line 2039

def get_send_statistics(params = {}, options = {})
  req = build_request(:get_send_statistics, params)
  req.send_request(options)
end

#get_template(params = {}) ⇒ Types::GetTemplateResponse

Displays the template object (which includes the Subject line, HTML part and text part) for the template you specify.

You can execute this operation no more than once per second.

Examples:

Request syntax with placeholder values


resp = client.get_template({
  template_name: "TemplateName", # required
})

Response structure


resp.template.template_name #=> String
resp.template.subject_part #=> String
resp.template.text_part #=> String
resp.template.html_part #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :template_name (required, String)

    The name of the template you want to retrieve.

Returns:

See Also:



2073
2074
2075
2076
# File 'lib/aws-sdk-ses/client.rb', line 2073

def get_template(params = {}, options = {})
  req = build_request(:get_template, params)
  req.send_request(options)
end

#list_configuration_sets(params = {}) ⇒ Types::ListConfigurationSetsResponse

Provides a list of the configuration sets associated with your Amazon SES account in the current AWS Region. For information about using configuration sets, see [Monitoring Your Amazon SES Sending Activity] in the *Amazon SES Developer Guide.*

You can execute this operation no more than once per second. This operation will return up to 1,000 configuration sets each time it is run. If your Amazon SES account has more than 1,000 configuration sets, this operation will also return a NextToken element. You can then execute the ‘ListConfigurationSets` operation again, passing the `NextToken` parameter and the value of the NextToken element to retrieve additional results.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html

Examples:

Request syntax with placeholder values


resp = client.list_configuration_sets({
  next_token: "NextToken",
  max_items: 1,
})

Response structure


resp.configuration_sets #=> Array
resp.configuration_sets[0].name #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :next_token (String)

    A token returned from a previous call to ‘ListConfigurationSets` to indicate the position of the configuration set in the configuration set list.

  • :max_items (Integer)

    The number of configuration sets to return.

Returns:

See Also:



2125
2126
2127
2128
# File 'lib/aws-sdk-ses/client.rb', line 2125

def list_configuration_sets(params = {}, options = {})
  req = build_request(:list_configuration_sets, params)
  req.send_request(options)
end

#list_custom_verification_email_templates(params = {}) ⇒ Types::ListCustomVerificationEmailTemplatesResponse

Lists the existing custom verification email templates for your account in the current AWS Region.

For more information about custom verification email templates, see

Using Custom Verification Email Templates][1

in the *Amazon SES

Developer Guide*.

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html

Examples:

Request syntax with placeholder values


resp = client.list_custom_verification_email_templates({
  next_token: "NextToken",
  max_results: 1,
})

Response structure


resp.custom_verification_email_templates #=> Array
resp.custom_verification_email_templates[0].template_name #=> String
resp.custom_verification_email_templates[0].from_email_address #=> String
resp.custom_verification_email_templates[0].template_subject #=> String
resp.custom_verification_email_templates[0].success_redirection_url #=> String
resp.custom_verification_email_templates[0].failure_redirection_url #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :next_token (String)

    An array the contains the name and creation time stamp for each template in your Amazon SES account.

  • :max_results (Integer)

    The maximum number of custom verification email templates to return. This value must be at least 1 and less than or equal to 50. If you do not specify a value, or if you specify a value less than 1 or greater than 50, the operation will return up to 50 results.

Returns:

See Also:



2179
2180
2181
2182
# File 'lib/aws-sdk-ses/client.rb', line 2179

def list_custom_verification_email_templates(params = {}, options = {})
  req = build_request(:list_custom_verification_email_templates, params)
  req.send_request(options)
end

#list_identities(params = {}) ⇒ Types::ListIdentitiesResponse

Returns a list containing all of the identities (email addresses and domains) for your AWS account in the current AWS Region, regardless of verification status.

You can execute this operation no more than once per second.

Examples:

Example: ListIdentities


# The following example lists the email address identities that have been submitted for verification with Amazon SES:

resp = client.list_identities({
  identity_type: "EmailAddress", 
  max_items: 123, 
  next_token: "", 
})

resp.to_h outputs the following:
{
  identities: [
    "[email protected]", 
  ], 
  next_token: "", 
}

Request syntax with placeholder values


resp = client.list_identities({
  identity_type: "EmailAddress", # accepts EmailAddress, Domain
  next_token: "NextToken",
  max_items: 1,
})

Response structure


resp.identities #=> Array
resp.identities[0] #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identity_type (String)

    The type of the identities to list. Possible values are “EmailAddress” and “Domain”. If this parameter is omitted, then all identities will be listed.

  • :next_token (String)

    The token to use for pagination.

  • :max_items (Integer)

    The maximum number of identities per page. Possible values are 1-1000 inclusive.

Returns:

See Also:



2244
2245
2246
2247
# File 'lib/aws-sdk-ses/client.rb', line 2244

def list_identities(params = {}, options = {})
  req = build_request(:list_identities, params)
  req.send_request(options)
end

#list_identity_policies(params = {}) ⇒ Types::ListIdentityPoliciesResponse

Returns a list of sending authorization policies that are attached to the given identity (an email address or a domain). This API returns only a list. If you want the actual policy content, you can use ‘GetIdentityPolicies`.

<note markdown=“1”> This API is for the identity owner only. If you have not verified the identity, this API will return an error.

</note>

Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html

Examples:

Example: ListIdentityPolicies


# The following example returns a list of sending authorization policies that are attached to an identity:

resp = client.list_identity_policies({
  identity: "example.com", 
})

resp.to_h outputs the following:
{
  policy_names: [
    "MyPolicy", 
  ], 
}

Request syntax with placeholder values


resp = client.list_identity_policies({
  identity: "Identity", # required
})

Response structure


resp.policy_names #=> Array
resp.policy_names[0] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identity (required, String)

    The identity that is associated with the policy for which the policies will be listed. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: ‘[email protected]`, `example.com`, `arn:aws:ses:us-east-1:123456789012:identity/example.com`.

    To successfully call this API, you must own the identity.

Returns:

See Also:



2313
2314
2315
2316
# File 'lib/aws-sdk-ses/client.rb', line 2313

def list_identity_policies(params = {}, options = {})
  req = build_request(:list_identity_policies, params)
  req.send_request(options)
end

#list_receipt_filters(params = {}) ⇒ Types::ListReceiptFiltersResponse

Lists the IP address filters associated with your AWS account in the current AWS Region.

For information about managing IP address filters, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-ip-filters.html

Examples:

Example: ListReceiptFilters


# The following example lists the IP address filters that are associated with an AWS account:

resp = client.list_receipt_filters({
})

resp.to_h outputs the following:
{
  filters: [
    {
      ip_filter: {
        cidr: "1.2.3.4/24", 
        policy: "Block", 
      }, 
      name: "MyFilter", 
    }, 
  ], 
}

Response structure


resp.filters #=> Array
resp.filters[0].name #=> String
resp.filters[0].ip_filter.policy #=> String, one of "Block", "Allow"
resp.filters[0].ip_filter.cidr #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Returns:

See Also:



2366
2367
2368
2369
# File 'lib/aws-sdk-ses/client.rb', line 2366

def list_receipt_filters(params = {}, options = {})
  req = build_request(:list_receipt_filters, params)
  req.send_request(options)
end

#list_receipt_rule_sets(params = {}) ⇒ Types::ListReceiptRuleSetsResponse

Lists the receipt rule sets that exist under your AWS account in the current AWS Region. If there are additional receipt rule sets to be retrieved, you will receive a ‘NextToken` that you can provide to the next call to `ListReceiptRuleSets` to retrieve the additional entries.

For information about managing receipt rule sets, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html

Examples:

Example: ListReceiptRuleSets


# The following example lists the receipt rule sets that exist under an AWS account:

resp = client.list_receipt_rule_sets({
  next_token: "", 
})

resp.to_h outputs the following:
{
  next_token: "", 
  rule_sets: [
    {
      created_timestamp: Time.parse("2016-07-15T16:25:59.607Z"), 
      name: "MyRuleSet", 
    }, 
  ], 
}

Request syntax with placeholder values


resp = client.list_receipt_rule_sets({
  next_token: "NextToken",
})

Response structure


resp.rule_sets #=> Array
resp.rule_sets[0].name #=> String
resp.rule_sets[0].created_timestamp #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :next_token (String)

    A token returned from a previous call to ‘ListReceiptRuleSets` to indicate the position in the receipt rule set list.

Returns:

See Also:



2431
2432
2433
2434
# File 'lib/aws-sdk-ses/client.rb', line 2431

def list_receipt_rule_sets(params = {}, options = {})
  req = build_request(:list_receipt_rule_sets, params)
  req.send_request(options)
end

#list_templates(params = {}) ⇒ Types::ListTemplatesResponse

Lists the email templates present in your Amazon SES account in the current AWS Region.

You can execute this operation no more than once per second.

Examples:

Request syntax with placeholder values


resp = client.list_templates({
  next_token: "NextToken",
  max_items: 1,
})

Response structure


resp. #=> Array
resp.[0].name #=> String
resp.[0].created_timestamp #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :next_token (String)

    A token returned from a previous call to ‘ListTemplates` to indicate the position in the list of email templates.

  • :max_items (Integer)

    The maximum number of templates to return. This value must be at least 1 and less than or equal to 10. If you do not specify a value, or if you specify a value less than 1 or greater than 10, the operation will return up to 10 results.

Returns:

See Also:



2474
2475
2476
2477
# File 'lib/aws-sdk-ses/client.rb', line 2474

def list_templates(params = {}, options = {})
  req = build_request(:list_templates, params)
  req.send_request(options)
end

#list_verified_email_addresses(params = {}) ⇒ Types::ListVerifiedEmailAddressesResponse

Deprecated. Use the ‘ListIdentities` operation to list the email addresses and domains associated with your account.

Examples:

Example: ListVerifiedEmailAddresses


# The following example lists all email addresses that have been submitted for verification with Amazon SES:

resp = client.list_verified_email_addresses({
})

resp.to_h outputs the following:
{
  verified_email_addresses: [
    "[email protected]", 
    "[email protected]", 
  ], 
}

Response structure


resp.verified_email_addresses #=> Array
resp.verified_email_addresses[0] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Returns:

See Also:



2511
2512
2513
2514
# File 'lib/aws-sdk-ses/client.rb', line 2511

def list_verified_email_addresses(params = {}, options = {})
  req = build_request(:list_verified_email_addresses, params)
  req.send_request(options)
end

#put_identity_policy(params = {}) ⇒ Struct

Adds or updates a sending authorization policy for the specified identity (an email address or a domain).

<note markdown=“1”> This API is for the identity owner only. If you have not verified the identity, this API will return an error.

</note>

Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html

Examples:

Example: PutIdentityPolicy


# The following example adds a sending authorization policy to an identity:

resp = client.put_identity_policy({
  identity: "example.com", 
  policy: "{\"Version\":\"2008-10-17\",\"Statement\":[{\"Sid\":\"stmt1469123904194\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"arn:aws:iam::123456789012:root\"},\"Action\":[\"ses:SendEmail\",\"ses:SendRawEmail\"],\"Resource\":\"arn:aws:ses:us-east-1:EXAMPLE65304:identity/example.com\"}]}", 
  policy_name: "MyPolicy", 
})

Request syntax with placeholder values


resp = client.put_identity_policy({
  identity: "Identity", # required
  policy_name: "PolicyName", # required
  policy: "Policy", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identity (required, String)

    The identity that the policy will apply to. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: ‘[email protected]`, `example.com`, `arn:aws:ses:us-east-1:123456789012:identity/example.com`.

    To successfully call this API, you must own the identity.

  • :policy_name (required, String)

    The name of the policy.

    The policy name cannot exceed 64 characters and can only include alphanumeric characters, dashes, and underscores.

  • :policy (required, String)

    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]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-policies.html

Returns:

  • (Struct)

    Returns an empty response.

See Also:



2583
2584
2585
2586
# File 'lib/aws-sdk-ses/client.rb', line 2583

def put_identity_policy(params = {}, options = {})
  req = build_request(:put_identity_policy, params)
  req.send_request(options)
end

#reorder_receipt_rule_set(params = {}) ⇒ Struct

Reorders the receipt rules within a receipt rule set.

<note markdown=“1”> All of the rules in the rule set must be represented in this request. That is, this API will return an error if the reorder request doesn’t explicitly position all of the rules.

</note>

For information about managing receipt rule sets, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html

Examples:

Example: ReorderReceiptRuleSet


# The following example reorders the receipt rules within a receipt rule set:

resp = client.reorder_receipt_rule_set({
  rule_names: [
    "MyRule", 
    "MyOtherRule", 
  ], 
  rule_set_name: "MyRuleSet", 
})

Request syntax with placeholder values


resp = client.reorder_receipt_rule_set({
  rule_set_name: "ReceiptRuleSetName", # required
  rule_names: ["ReceiptRuleName"], # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :rule_set_name (required, String)

    The name of the receipt rule set to reorder.

  • :rule_names (required, Array<String>)

    A list of the specified receipt rule set’s receipt rules in the order that you want to put them.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



2638
2639
2640
2641
# File 'lib/aws-sdk-ses/client.rb', line 2638

def reorder_receipt_rule_set(params = {}, options = {})
  req = build_request(:reorder_receipt_rule_set, params)
  req.send_request(options)
end

#send_bounce(params = {}) ⇒ Types::SendBounceResponse

Generates and sends a bounce message to the sender of an email you received through Amazon SES. You can only use this API on an email up to 24 hours after you receive it.

<note markdown=“1”> You cannot use this API to send generic bounces for mail that was not received by Amazon SES.

</note>

For information about receiving email through Amazon SES, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html

Examples:

Request syntax with placeholder values


resp = client.send_bounce({
  original_message_id: "MessageId", # required
  bounce_sender: "Address", # required
  explanation: "Explanation",
  message_dsn: {
    reporting_mta: "ReportingMta", # required
    arrival_date: Time.now,
    extension_fields: [
      {
        name: "ExtensionFieldName", # required
        value: "ExtensionFieldValue", # required
      },
    ],
  },
  bounced_recipient_info_list: [ # required
    {
      recipient: "Address", # required
      recipient_arn: "AmazonResourceName",
      bounce_type: "DoesNotExist", # accepts DoesNotExist, MessageTooLarge, ExceededQuota, ContentRejected, Undefined, TemporaryFailure
      recipient_dsn_fields: {
        final_recipient: "Address",
        action: "failed", # required, accepts failed, delayed, delivered, relayed, expanded
        remote_mta: "RemoteMta",
        status: "DsnStatus", # required
        diagnostic_code: "DiagnosticCode",
        last_attempt_date: Time.now,
        extension_fields: [
          {
            name: "ExtensionFieldName", # required
            value: "ExtensionFieldValue", # required
          },
        ],
      },
    },
  ],
  bounce_sender_arn: "AmazonResourceName",
})

Response structure


resp.message_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :original_message_id (required, String)

    The message ID of the message to be bounced.

  • :bounce_sender (required, String)

    The address to use in the “From” header of the bounce message. This must be an identity that you have verified with Amazon SES.

  • :explanation (String)

    Human-readable text for the bounce message to explain the failure. If not specified, the text will be auto-generated based on the bounced recipient information.

  • :message_dsn (Types::MessageDsn)

    Message-related DSN fields. If not specified, Amazon SES will choose the values.

  • :bounced_recipient_info_list (required, Array<Types::BouncedRecipientInfo>)

    A list of recipients of the bounced message, including the information required to create the Delivery Status Notifications (DSNs) for the recipients. You must specify at least one ‘BouncedRecipientInfo` in the list.

  • :bounce_sender_arn (String)

    This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to use the address in the “From” header of the bounce. For more information about sending authorization, see the [Amazon SES Developer Guide].

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html

Returns:

See Also:



2746
2747
2748
2749
# File 'lib/aws-sdk-ses/client.rb', line 2746

def send_bounce(params = {}, options = {})
  req = build_request(:send_bounce, params)
  req.send_request(options)
end

#send_bulk_templated_email(params = {}) ⇒ Types::SendBulkTemplatedEmailResponse

Composes an email message to multiple destinations. The message body is created using an email template.

In order to send email using the ‘SendBulkTemplatedEmail` operation, your call to the API must meet the following requirements:

  • The call must refer to an existing email template. You can create email templates using the CreateTemplate operation.

  • The message must be sent from a verified email address or domain.

  • If your account is still in the Amazon SES sandbox, you may only send to verified addresses or domains, or to email addresses associated with the Amazon SES Mailbox Simulator. For more information, see [Verifying Email Addresses and Domains] in the *Amazon SES Developer Guide.*

  • The maximum message size is 10 MB.

  • Each ‘Destination` parameter must include at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If a recipient email address is invalid (that is, it is not in the format *UserName@Domain.TopLevelDomain*), the entire message will be rejected, even if the message contains other recipients that are valid.

  • The message may not include more than 50 recipients, across the To:, CC: and BCC: fields. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call the ‘SendBulkTemplatedEmail` operation several times to send the message to each group.

  • The number of destinations you can contact in a single call to the API may be limited by your account’s maximum sending rate.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html

Examples:

Request syntax with placeholder values


resp = client.send_bulk_templated_email({
  source: "Address", # required
  source_arn: "AmazonResourceName",
  reply_to_addresses: ["Address"],
  return_path: "Address",
  return_path_arn: "AmazonResourceName",
  configuration_set_name: "ConfigurationSetName",
  default_tags: [
    {
      name: "MessageTagName", # required
      value: "MessageTagValue", # required
    },
  ],
  template: "TemplateName", # required
  template_arn: "AmazonResourceName",
  default_template_data: "TemplateData",
  destinations: [ # required
    {
      destination: { # required
        to_addresses: ["Address"],
        cc_addresses: ["Address"],
        bcc_addresses: ["Address"],
      },
      replacement_tags: [
        {
          name: "MessageTagName", # required
          value: "MessageTagValue", # required
        },
      ],
      replacement_template_data: "TemplateData",
    },
  ],
})

Response structure


resp.status #=> Array
resp.status[0].status #=> String, one of "Success", "MessageRejected", "MailFromDomainNotVerified", "ConfigurationSetDoesNotExist", "TemplateDoesNotExist", "AccountSuspended", "AccountThrottled", "AccountDailyQuotaExceeded", "InvalidSendingPoolName", "AccountSendingPaused", "ConfigurationSetSendingPaused", "InvalidParameterValue", "TransientFailure", "Failed"
resp.status[0].error #=> String
resp.status[0].message_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :source (required, String)

    The email address that is sending the email. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES. For information about verifying identities, see the [Amazon SES Developer Guide].

    If you are sending on behalf of another user and have been permitted to do so by a sending authorization policy, then you must also specify the ‘SourceArn` parameter. For more information about sending authorization, see the [Amazon SES Developer Guide].

    <note markdown=“1”> Amazon SES does not support the SMTPUTF8 extension, as described in [RFC6531]. For this reason, the *local part* of a source email address (the part of the email address that precedes the @ sign) may only contain [7-bit ASCII characters]. 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]. The sender name (also known as the *friendly name*) may contain non-ASCII characters. These characters must be encoded using MIME encoded-word syntax, as described in [RFC 2047]. MIME encoded-word syntax uses the following form: ‘=?charset?encoding?encoded-text?=`.

    </note>
    

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html [2]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html [3]: tools.ietf.org/html/rfc6531 [4]: en.wikipedia.org/wiki/Email_address#Local-part [5]: tools.ietf.org/html/rfc3492.html [6]: tools.ietf.org/html/rfc2047

  • :source_arn (String)

    This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to send for the email address specified in the ‘Source` parameter.

    For example, if the owner of ‘example.com` (which has ARN `arn:aws:ses:us-east-1:123456789012:identity/example.com`) attaches a policy to it that authorizes you to send from `[email protected]`, then you would specify the `SourceArn` to be `arn:aws:ses:us-east-1:123456789012:identity/example.com`, and the `Source` to be `[email protected]`.

    For more information about sending authorization, see the [Amazon SES Developer Guide].

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html

  • :reply_to_addresses (Array<String>)

    The reply-to email address(es) for the message. If the recipient replies to the message, each reply-to address will receive the reply.

  • :return_path (String)

    The email address that bounces and complaints will be forwarded to when feedback forwarding is enabled. If the message cannot be delivered to the recipient, then an error message will be returned from the recipient’s ISP; this message will then be forwarded to the email address specified by the ‘ReturnPath` parameter. The `ReturnPath` parameter is never overwritten. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES.

  • :return_path_arn (String)

    This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to use the email address specified in the ‘ReturnPath` parameter.

    For example, if the owner of ‘example.com` (which has ARN `arn:aws:ses:us-east-1:123456789012:identity/example.com`) attaches a policy to it that authorizes you to use `[email protected]`, then you would specify the `ReturnPathArn` to be `arn:aws:ses:us-east-1:123456789012:identity/example.com`, and the `ReturnPath` to be `[email protected]`.

    For more information about sending authorization, see the [Amazon SES Developer Guide].

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html

  • :configuration_set_name (String)

    The name of the configuration set to use when you send an email using ‘SendBulkTemplatedEmail`.

  • :default_tags (Array<Types::MessageTag>)

    A list of tags, in the form of name/value pairs, to apply to an email that you send to a destination using ‘SendBulkTemplatedEmail`.

  • :template (required, String)

    The template to use when sending this email.

  • :template_arn (String)

    The ARN of the template to use when sending this email.

  • :default_template_data (String)

    A list of replacement values to apply to the template when replacement data is not specified in a Destination object. These values act as a default or fallback option when no other data is available.

    The template data is a JSON object, typically consisting of key-value pairs in which the keys correspond to replacement tags in the email template.

  • :destinations (required, Array<Types::BulkEmailDestination>)

    One or more ‘Destination` objects. All of the recipients in a `Destination` will receive the same version of the email. You can specify up to 50 `Destination` objects within a `Destinations` array.

Returns:

See Also:



2957
2958
2959
2960
# File 'lib/aws-sdk-ses/client.rb', line 2957

def send_bulk_templated_email(params = {}, options = {})
  req = build_request(:send_bulk_templated_email, params)
  req.send_request(options)
end

#send_custom_verification_email(params = {}) ⇒ Types::SendCustomVerificationEmailResponse

Adds an email address to the list of identities for your Amazon SES account in the current AWS Region and attempts to verify it. As a result of executing this operation, a customized verification email is sent to the specified address.

To use this operation, you must first create a custom verification email template. For more information about creating and using custom verification email templates, see [Using Custom Verification Email Templates] in the *Amazon SES Developer Guide*.

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html

Examples:

Request syntax with placeholder values


resp = client.send_custom_verification_email({
  email_address: "Address", # required
  template_name: "TemplateName", # required
  configuration_set_name: "ConfigurationSetName",
})

Response structure


resp.message_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :email_address (required, String)

    The email address to verify.

  • :template_name (required, String)

    The name of the custom verification email template to use when sending the verification email.

  • :configuration_set_name (String)

    Name of a configuration set to use when sending the verification email.

Returns:

See Also:



3009
3010
3011
3012
# File 'lib/aws-sdk-ses/client.rb', line 3009

def send_custom_verification_email(params = {}, options = {})
  req = build_request(:send_custom_verification_email, params)
  req.send_request(options)
end

#send_email(params = {}) ⇒ Types::SendEmailResponse

Composes an email message and immediately queues it for sending. In order to send email using the ‘SendEmail` operation, your message must meet the following requirements:

  • The message must be sent from a verified email address or domain. If you attempt to send email using a non-verified address or domain, the operation will result in an “Email address not verified” error.

  • If your account is still in the Amazon SES sandbox, you may only send to verified addresses or domains, or to email addresses associated with the Amazon SES Mailbox Simulator. For more information, see [Verifying Email Addresses and Domains] in the *Amazon SES Developer Guide.*

  • The maximum message size is 10 MB.

  • The message must include at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If a recipient email address is invalid (that is, it is not in the format *UserName@Domain.TopLevelDomain*), the entire message will be rejected, even if the message contains other recipients that are valid.

  • The message may not include more than 50 recipients, across the To:, CC: and BCC: fields. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call the ‘SendEmail` operation several times to send the message to each group.

For every message that you send, the total number of recipients (including each recipient in the To:, CC: and BCC: fields) is counted against the maximum number of emails you can send in a 24-hour period (your *sending quota*). For more information about sending quotas in Amazon SES, see [Managing Your Amazon SES Sending Limits] in the *Amazon SES Developer Guide.*

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html [2]: docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html

Examples:

Example: SendEmail


# The following example sends a formatted email:

resp = client.send_email({
  destination: {
    bcc_addresses: [
    ], 
    cc_addresses: [
      "[email protected]", 
    ], 
    to_addresses: [
      "[email protected]", 
      "[email protected]", 
    ], 
  }, 
  message: {
    body: {
      html: {
        charset: "UTF-8", 
        data: "This message body contains HTML formatting. It can, for example, contain links like this one: <a class=\"ulink\" href=\"http://docs.aws.amazon.com/ses/latest/DeveloperGuide\" target=\"_blank\">Amazon SES Developer Guide</a>.", 
      }, 
      text: {
        charset: "UTF-8", 
        data: "This is the message body in text format.", 
      }, 
    }, 
    subject: {
      charset: "UTF-8", 
      data: "Test email", 
    }, 
  }, 
  reply_to_addresses: [
  ], 
  return_path: "", 
  return_path_arn: "", 
  source: "[email protected]", 
  source_arn: "", 
})

resp.to_h outputs the following:
{
  message_id: "EXAMPLE78603177f-7a5433e7-8edb-42ae-af10-f0181f34d6ee-000000", 
}

Request syntax with placeholder values


resp = client.send_email({
  source: "Address", # required
  destination: { # required
    to_addresses: ["Address"],
    cc_addresses: ["Address"],
    bcc_addresses: ["Address"],
  },
  message: { # required
    subject: { # required
      data: "MessageData", # required
      charset: "Charset",
    },
    body: { # required
      text: {
        data: "MessageData", # required
        charset: "Charset",
      },
      html: {
        data: "MessageData", # required
        charset: "Charset",
      },
    },
  },
  reply_to_addresses: ["Address"],
  return_path: "Address",
  source_arn: "AmazonResourceName",
  return_path_arn: "AmazonResourceName",
  tags: [
    {
      name: "MessageTagName", # required
      value: "MessageTagValue", # required
    },
  ],
  configuration_set_name: "ConfigurationSetName",
})

Response structure


resp.message_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :source (required, String)

    The email address that is sending the email. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES. For information about verifying identities, see the [Amazon SES Developer Guide].

    If you are sending on behalf of another user and have been permitted to do so by a sending authorization policy, then you must also specify the ‘SourceArn` parameter. For more information about sending authorization, see the [Amazon SES Developer Guide].

    <note markdown=“1”> Amazon SES does not support the SMTPUTF8 extension, as described in [RFC6531]. For this reason, the *local part* of a source email address (the part of the email address that precedes the @ sign) may only contain [7-bit ASCII characters]. 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]. The sender name (also known as the *friendly name*) may contain non-ASCII characters. These characters must be encoded using MIME encoded-word syntax, as described in [RFC 2047]. MIME encoded-word syntax uses the following form: ‘=?charset?encoding?encoded-text?=`.

    </note>
    

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html [2]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html [3]: tools.ietf.org/html/rfc6531 [4]: en.wikipedia.org/wiki/Email_address#Local-part [5]: tools.ietf.org/html/rfc3492.html [6]: tools.ietf.org/html/rfc2047

  • :destination (required, Types::Destination)

    The destination for this email, composed of To:, CC:, and BCC: fields.

  • :message (required, Types::Message)

    The message to be sent.

  • :reply_to_addresses (Array<String>)

    The reply-to email address(es) for the message. If the recipient replies to the message, each reply-to address will receive the reply.

  • :return_path (String)

    The email address that bounces and complaints will be forwarded to when feedback forwarding is enabled. If the message cannot be delivered to the recipient, then an error message will be returned from the recipient’s ISP; this message will then be forwarded to the email address specified by the ‘ReturnPath` parameter. The `ReturnPath` parameter is never overwritten. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES.

  • :source_arn (String)

    This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to send for the email address specified in the ‘Source` parameter.

    For example, if the owner of ‘example.com` (which has ARN `arn:aws:ses:us-east-1:123456789012:identity/example.com`) attaches a policy to it that authorizes you to send from `[email protected]`, then you would specify the `SourceArn` to be `arn:aws:ses:us-east-1:123456789012:identity/example.com`, and the `Source` to be `[email protected]`.

    For more information about sending authorization, see the [Amazon SES Developer Guide].

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html

  • :return_path_arn (String)

    This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to use the email address specified in the ‘ReturnPath` parameter.

    For example, if the owner of ‘example.com` (which has ARN `arn:aws:ses:us-east-1:123456789012:identity/example.com`) attaches a policy to it that authorizes you to use `[email protected]`, then you would specify the `ReturnPathArn` to be `arn:aws:ses:us-east-1:123456789012:identity/example.com`, and the `ReturnPath` to be `[email protected]`.

    For more information about sending authorization, see the [Amazon SES Developer Guide].

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html

  • :tags (Array<Types::MessageTag>)

    A list of tags, in the form of name/value pairs, to apply to an email that you send using ‘SendEmail`. Tags correspond to characteristics of the email that you define, so that you can publish email sending events.

  • :configuration_set_name (String)

    The name of the configuration set to use when you send an email using ‘SendEmail`.

Returns:

See Also:



3255
3256
3257
3258
# File 'lib/aws-sdk-ses/client.rb', line 3255

def send_email(params = {}, options = {})
  req = build_request(:send_email, params)
  req.send_request(options)
end

#send_raw_email(params = {}) ⇒ Types::SendRawEmailResponse

Composes an email message and immediately queues it for sending.

This operation is more flexible than the ‘SendEmail` API operation. When you use the `SendRawEmail` operation, you can specify the headers of the message as well as its content. This flexibility is useful, for example, when you want to send a multipart MIME email (such a message that contains both a text and an HTML version). You can also use this operation to send messages that include attachments.

The ‘SendRawEmail` operation has the following requirements:

  • You can only send email from [verified email addresses or domains]. If you try to send email from an address that isn’t verified, the operation results in an “Email address not verified” error.

  • If your account is still in the [Amazon SES sandbox], you can only send email to other verified addresses in your account, or to addresses that are associated with the [Amazon SES mailbox simulator].

  • The maximum message size, including attachments, is 10 MB.

  • Each message has to include at least one recipient address. A recipient address includes any address on the To:, CC:, or BCC: lines.

  • If you send a single message to more than one recipient address, and one of the recipient addresses isn’t in a valid format (that is, it’s not in the format *UserName@Domain.TopLevelDomain*), Amazon SES rejects the entire message, even if the other addresses are valid.

  • Each message can include up to 50 recipient addresses across the To:, CC:, or BCC: lines. If you need to send a single message to more than 50 recipients, you have to split the list of recipient addresses into groups of less than 50 recipients, and send separate messages to each group.

  • Amazon SES allows you to specify 8-bit Content-Transfer-Encoding for MIME message parts. However, if Amazon SES has to modify the contents of your message (for example, if you use open and click tracking), 8-bit content isn’t preserved. For this reason, we highly recommend that you encode all content that isn’t 7-bit ASCII. For more information, see [MIME Encoding] in the *Amazon SES Developer Guide*.

Additionally, keep the following considerations in mind when using the ‘SendRawEmail` operation:

  • Although you can customize the message headers when using the ‘SendRawEmail` operation, Amazon SES will automatically apply its own `Message-ID` and `Date` headers; if you passed these headers when creating the message, they will be overwritten by the values that Amazon SES provides.

  • If you are using sending authorization to send on behalf of another user, ‘SendRawEmail` enables you to specify the cross-account identity for the email’s Source, From, and Return-Path parameters in one of two ways: you can pass optional parameters ‘SourceArn`, `FromArn`, and/or `ReturnPathArn` to the API, or you can include the following X-headers in the header of your raw email:

    • ‘X-SES-SOURCE-ARN`

    • ‘X-SES-FROM-ARN`

    • ‘X-SES-RETURN-PATH-ARN`

    Do not include these X-headers in the DKIM signature; Amazon SES will remove them before sending the email.

    For most common sending authorization scenarios, we recommend that you specify the ‘SourceIdentityArn` parameter and not the `FromIdentityArn` or `ReturnPathIdentityArn` parameters. If you only specify the `SourceIdentityArn` parameter, Amazon SES will set the From and Return Path addresses to the identity specified in `SourceIdentityArn`. For more information about sending authorization, see the [Using Sending Authorization with Amazon SES] in the *Amazon SES Developer Guide.*

  • For every message that you send, the total number of recipients (including each recipient in the To:, CC: and BCC: fields) is counted against the maximum number of emails you can send in a 24-hour period (your *sending quota*). For more information about sending quotas in Amazon SES, see [Managing Your Amazon SES Sending Limits] in the *Amazon SES Developer Guide.*

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html [2]: docs.aws.amazon.com/ses/latest/DeveloperGuide/request-production-access.html [3]: docs.aws.amazon.com/ses/latest/DeveloperGuide/mailbox-simulator.html [4]: docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html#send-email-mime-encoding [5]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html [6]: docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html

Examples:

Example: SendRawEmail


# The following example sends an email with an attachment:

resp = client.send_raw_email({
  destinations: [
  ], 
  from_arn: "", 
  raw_message: {
    data: "From: [email protected]\\nTo: [email protected]\\nSubject: Test email (contains an attachment)\\nMIME-Version: 1.0\\nContent-type: Multipart/Mixed; boundary=\"NextPart\"\\n\\n--NextPart\\nContent-Type: text/plain\\n\\nThis is the message body.\\n\\n--NextPart\\nContent-Type: text/plain;\\nContent-Disposition: attachment; filename=\"attachment.txt\"\\n\\nThis is the text in the attachment.\\n\\n--NextPart--", 
  }, 
  return_path_arn: "", 
  source: "", 
  source_arn: "", 
})

resp.to_h outputs the following:
{
  message_id: "EXAMPLEf3f73d99b-c63fb06f-d263-41f8-a0fb-d0dc67d56c07-000000", 
}

Request syntax with placeholder values


resp = client.send_raw_email({
  source: "Address",
  destinations: ["Address"],
  raw_message: { # required
    data: "data", # required
  },
  from_arn: "AmazonResourceName",
  source_arn: "AmazonResourceName",
  return_path_arn: "AmazonResourceName",
  tags: [
    {
      name: "MessageTagName", # required
      value: "MessageTagValue", # required
    },
  ],
  configuration_set_name: "ConfigurationSetName",
})

Response structure


resp.message_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :source (String)

    The identity’s email address. If you do not provide a value for this parameter, you must specify a “From” address in the raw text of the message. (You can also specify both.)

    <note markdown=“1”> Amazon SES does not support the SMTPUTF8 extension, as described in[1]. For this reason, the *local part* of a source email address (the part of the email address that precedes the @ sign) may only contain [7-bit ASCII characters]. 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]. The sender name (also known as the *friendly name*) may contain non-ASCII characters. These characters must be encoded using MIME encoded-word syntax, as described in [RFC 2047]. MIME encoded-word syntax uses the following form: ‘=?charset?encoding?encoded-text?=`.

    </note>
    

    If you specify the ‘Source` parameter and have feedback forwarding enabled, then bounces and complaints will be sent to this email address. This takes precedence over any Return-Path header that you might include in the raw text of the message.

    [1]: tools.ietf.org/html/rfc6531 [2]: en.wikipedia.org/wiki/Email_address#Local-part [3]: tools.ietf.org/html/rfc3492.html [4]: tools.ietf.org/html/rfc2047

  • :destinations (Array<String>)

    A list of destinations for the message, consisting of To:, CC:, and BCC: addresses.

  • :raw_message (required, Types::RawMessage)

    The raw email message itself. The message has to meet the following criteria:

    • The message has to contain a header and a body, separated by a 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.

    • Attachments must be of a content type that Amazon SES supports. For a list on unsupported content types, see [Unsupported Attachment Types] in the *Amazon SES Developer Guide*.

    • 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, we highly recommend that you encode that content. For more information, see [Sending Raw Email] in the *Amazon SES Developer Guide*.

    • Per [RFC 5321], the maximum length of each line of text, including the &lt;CRLF&gt;, must not exceed 1,000 characters.

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/mime-types.html [2]: docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html [3]: tools.ietf.org/html/rfc5321#section-4.5.3.1.6

  • :from_arn (String)

    This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to specify a particular “From” address in the header of the raw email.

    Instead of using this parameter, you can use the X-header ‘X-SES-FROM-ARN` in the raw message of the email. If you use both the `FromArn` parameter and the corresponding X-header, Amazon SES uses the value of the `FromArn` parameter.

    <note markdown=“1”> For information about when to use this parameter, see the description of ‘SendRawEmail` in this guide, or see the [Amazon SES Developer Guide].

    </note>
    

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html

  • :source_arn (String)

    This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to send for the email address specified in the ‘Source` parameter.

    For example, if the owner of ‘example.com` (which has ARN `arn:aws:ses:us-east-1:123456789012:identity/example.com`) attaches a policy to it that authorizes you to send from `[email protected]`, then you would specify the `SourceArn` to be `arn:aws:ses:us-east-1:123456789012:identity/example.com`, and the `Source` to be `[email protected]`.

    Instead of using this parameter, you can use the X-header ‘X-SES-SOURCE-ARN` in the raw message of the email. If you use both the `SourceArn` parameter and the corresponding X-header, Amazon SES uses the value of the `SourceArn` parameter.

    <note markdown=“1”> For information about when to use this parameter, see the description of ‘SendRawEmail` in this guide, or see the [Amazon SES Developer Guide].

    </note>
    

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html

  • :return_path_arn (String)

    This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to use the email address specified in the ‘ReturnPath` parameter.

    For example, if the owner of ‘example.com` (which has ARN `arn:aws:ses:us-east-1:123456789012:identity/example.com`) attaches a policy to it that authorizes you to use `[email protected]`, then you would specify the `ReturnPathArn` to be `arn:aws:ses:us-east-1:123456789012:identity/example.com`, and the `ReturnPath` to be `[email protected]`.

    Instead of using this parameter, you can use the X-header ‘X-SES-RETURN-PATH-ARN` in the raw message of the email. If you use both the `ReturnPathArn` parameter and the corresponding X-header, Amazon SES uses the value of the `ReturnPathArn` parameter.

    <note markdown=“1”> For information about when to use this parameter, see the description of ‘SendRawEmail` in this guide, or see the [Amazon SES Developer Guide].

    </note>
    

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html

  • :tags (Array<Types::MessageTag>)

    A list of tags, in the form of name/value pairs, to apply to an email that you send using ‘SendRawEmail`. Tags correspond to characteristics of the email that you define, so that you can publish email sending events.

  • :configuration_set_name (String)

    The name of the configuration set to use when you send an email using ‘SendRawEmail`.

Returns:

See Also:



3563
3564
3565
3566
# File 'lib/aws-sdk-ses/client.rb', line 3563

def send_raw_email(params = {}, options = {})
  req = build_request(:send_raw_email, params)
  req.send_request(options)
end

#send_templated_email(params = {}) ⇒ Types::SendTemplatedEmailResponse

Composes an email message using an email template and immediately queues it for sending.

In order to send email using the ‘SendTemplatedEmail` operation, your call to the API must meet the following requirements:

  • The call must refer to an existing email template. You can create email templates using the CreateTemplate operation.

  • The message must be sent from a verified email address or domain.

  • If your account is still in the Amazon SES sandbox, you may only send to verified addresses or domains, or to email addresses associated with the Amazon SES Mailbox Simulator. For more information, see [Verifying Email Addresses and Domains] in the *Amazon SES Developer Guide.*

  • The maximum message size is 10 MB.

  • Calls to the ‘SendTemplatedEmail` operation may only include one `Destination` parameter. A destination is a set of recipients who will receive the same version of the email. The `Destination` parameter can include up to 50 recipients, across the To:, CC: and BCC: fields.

  • The ‘Destination` parameter must include at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If a recipient email address is invalid (that is, it is not in the format *UserName@Domain.TopLevelDomain*), the entire message will be rejected, even if the message contains other recipients that are valid.

If your call to the ‘SendTemplatedEmail` operation includes all of the required parameters, Amazon SES accepts it and returns a Message ID. However, if Amazon SES can’t render the email because the template contains errors, it doesn’t send the email. Additionally, because it already accepted the message, Amazon SES doesn’t return a message stating that it was unable to send the email.

For these reasons, we highly recommend that you set up Amazon SES to

send you notifications when Rendering Failure events occur. For more information, see [Sending Personalized Email Using the Amazon SES API] in the *Amazon Simple Email Service Developer Guide*.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html [2]: docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html

Examples:

Request syntax with placeholder values


resp = client.send_templated_email({
  source: "Address", # required
  destination: { # required
    to_addresses: ["Address"],
    cc_addresses: ["Address"],
    bcc_addresses: ["Address"],
  },
  reply_to_addresses: ["Address"],
  return_path: "Address",
  source_arn: "AmazonResourceName",
  return_path_arn: "AmazonResourceName",
  tags: [
    {
      name: "MessageTagName", # required
      value: "MessageTagValue", # required
    },
  ],
  configuration_set_name: "ConfigurationSetName",
  template: "TemplateName", # required
  template_arn: "AmazonResourceName",
  template_data: "TemplateData", # required
})

Response structure


resp.message_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :source (required, String)

    The email address that is sending the email. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES. For information about verifying identities, see the [Amazon SES Developer Guide].

    If you are sending on behalf of another user and have been permitted to do so by a sending authorization policy, then you must also specify the ‘SourceArn` parameter. For more information about sending authorization, see the [Amazon SES Developer Guide].

    <note markdown=“1”> Amazon SES does not support the SMTPUTF8 extension, as described in [RFC6531]. For this reason, the *local part* of a source email address (the part of the email address that precedes the @ sign) may only contain [7-bit ASCII characters]. 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]. The sender name (also known as the *friendly name*) may contain non-ASCII characters. These characters must be encoded using MIME encoded-word syntax, as described in[RFC 2047]. MIME encoded-word syntax uses the following form: ‘=?charset?encoding?encoded-text?=`.

    </note>
    

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html [2]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html [3]: tools.ietf.org/html/rfc6531 [4]: en.wikipedia.org/wiki/Email_address#Local-part [5]: tools.ietf.org/html/rfc3492.html [6]: tools.ietf.org/html/rfc2047

  • :destination (required, Types::Destination)

    The destination for this email, composed of To:, CC:, and BCC: fields. A Destination can include up to 50 recipients across these three fields.

  • :reply_to_addresses (Array<String>)

    The reply-to email address(es) for the message. If the recipient replies to the message, each reply-to address will receive the reply.

  • :return_path (String)

    The email address that bounces and complaints will be forwarded to when feedback forwarding is enabled. If the message cannot be delivered to the recipient, then an error message will be returned from the recipient’s ISP; this message will then be forwarded to the email address specified by the ‘ReturnPath` parameter. The `ReturnPath` parameter is never overwritten. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES.

  • :source_arn (String)

    This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to send for the email address specified in the ‘Source` parameter.

    For example, if the owner of ‘example.com` (which has ARN `arn:aws:ses:us-east-1:123456789012:identity/example.com`) attaches a policy to it that authorizes you to send from `[email protected]`, then you would specify the `SourceArn` to be `arn:aws:ses:us-east-1:123456789012:identity/example.com`, and the `Source` to be `[email protected]`.

    For more information about sending authorization, see the [Amazon SES Developer Guide].

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html

  • :return_path_arn (String)

    This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to use the email address specified in the ‘ReturnPath` parameter.

    For example, if the owner of ‘example.com` (which has ARN `arn:aws:ses:us-east-1:123456789012:identity/example.com`) attaches a policy to it that authorizes you to use `[email protected]`, then you would specify the `ReturnPathArn` to be `arn:aws:ses:us-east-1:123456789012:identity/example.com`, and the `ReturnPath` to be `[email protected]`.

    For more information about sending authorization, see the [Amazon SES Developer Guide].

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html

  • :tags (Array<Types::MessageTag>)

    A list of tags, in the form of name/value pairs, to apply to an email that you send using ‘SendTemplatedEmail`. Tags correspond to characteristics of the email that you define, so that you can publish email sending events.

  • :configuration_set_name (String)

    The name of the configuration set to use when you send an email using ‘SendTemplatedEmail`.

  • :template (required, String)

    The template to use when sending this email.

  • :template_arn (String)

    The ARN of the template to use when sending this email.

  • :template_data (required, String)

    A list of replacement values to apply to the template. This parameter is a JSON object, typically consisting of key-value pairs in which the keys correspond to replacement tags in the email template.

Returns:

See Also:



3768
3769
3770
3771
# File 'lib/aws-sdk-ses/client.rb', line 3768

def send_templated_email(params = {}, options = {})
  req = build_request(:send_templated_email, params)
  req.send_request(options)
end

#set_active_receipt_rule_set(params = {}) ⇒ Struct

Sets the specified receipt rule set as the active receipt rule set.

<note markdown=“1”> To disable your email-receiving through Amazon SES completely, you can call this API with RuleSetName set to null.

</note>

For information about managing receipt rule sets, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html

Examples:

Example: SetActiveReceiptRuleSet


# The following example sets the active receipt rule set:

resp = client.set_active_receipt_rule_set({
  rule_set_name: "RuleSetToActivate", 
})

Request syntax with placeholder values


resp = client.set_active_receipt_rule_set({
  rule_set_name: "ReceiptRuleSetName",
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :rule_set_name (String)

    The name of the receipt rule set to make active. Setting this value to null disables all email receiving.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



3814
3815
3816
3817
# File 'lib/aws-sdk-ses/client.rb', line 3814

def set_active_receipt_rule_set(params = {}, options = {})
  req = build_request(:set_active_receipt_rule_set, params)
  req.send_request(options)
end

#set_identity_dkim_enabled(params = {}) ⇒ Struct

Enables or disables Easy DKIM signing of email sent from an identity:

  • If Easy DKIM signing is enabled for a domain name identity (such as ‘example.com`), then Amazon SES will DKIM-sign all email sent by addresses under that domain name (for example, `[email protected]`).

  • If Easy DKIM signing is enabled for an email address, then Amazon SES will DKIM-sign all email sent by that email address.

For email addresses (for example, ‘[email protected]`), you can only enable Easy DKIM signing if the corresponding domain (in this case, `example.com`) has been set up for Easy DKIM using the AWS Console or the `VerifyDomainDkim` operation.

You can execute this operation no more than once per second.

For more information about Easy DKIM signing, go to the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html

Examples:

Example: SetIdentityDkimEnabled


# The following example configures Amazon SES to Easy DKIM-sign the email sent from an identity:

resp = client.set_identity_dkim_enabled({
  dkim_enabled: true, 
  identity: "[email protected]", 
})

Request syntax with placeholder values


resp = client.set_identity_dkim_enabled({
  identity: "Identity", # required
  dkim_enabled: false, # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identity (required, String)

    The identity for which DKIM signing should be enabled or disabled.

  • :dkim_enabled (required, Boolean)

    Sets whether DKIM signing is enabled for an identity. Set to ‘true` to enable DKIM signing for this identity; `false` to disable it.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



3872
3873
3874
3875
# File 'lib/aws-sdk-ses/client.rb', line 3872

def set_identity_dkim_enabled(params = {}, options = {})
  req = build_request(:set_identity_dkim_enabled, params)
  req.send_request(options)
end

#set_identity_feedback_forwarding_enabled(params = {}) ⇒ Struct

Given an identity (an email address or a domain), enables or disables whether Amazon SES forwards bounce and complaint notifications as email. Feedback forwarding can only be disabled when Amazon Simple Notification Service (Amazon SNS) topics are specified for both bounces and complaints.

<note markdown=“1”> Feedback forwarding does not apply to delivery notifications. Delivery notifications are only available through Amazon SNS.

</note>

You can execute this operation no more than once per second.

For more information about using notifications with Amazon SES, see the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html

Examples:

Example: SetIdentityFeedbackForwardingEnabled


# The following example configures Amazon SES to forward an identity's bounces and complaints via email:

resp = client.set_identity_feedback_forwarding_enabled({
  forwarding_enabled: true, 
  identity: "[email protected]", 
})

Request syntax with placeholder values


resp = client.set_identity_feedback_forwarding_enabled({
  identity: "Identity", # required
  forwarding_enabled: false, # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identity (required, String)

    The identity for which to set bounce and complaint notification forwarding. Examples: ‘[email protected]`, `example.com`.

  • :forwarding_enabled (required, Boolean)

    Sets whether Amazon SES will forward bounce and complaint notifications as email. ‘true` specifies that Amazon SES will forward bounce and complaint notifications as email, in addition to any Amazon SNS topic publishing otherwise specified. `false` specifies that Amazon SES will publish bounce and complaint notifications only through Amazon SNS. This value can only be set to `false` when Amazon SNS topics are set for both `Bounce` and `Complaint` notification types.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



3934
3935
3936
3937
# File 'lib/aws-sdk-ses/client.rb', line 3934

def set_identity_feedback_forwarding_enabled(params = {}, options = {})
  req = build_request(:set_identity_feedback_forwarding_enabled, params)
  req.send_request(options)
end

#set_identity_headers_in_notifications_enabled(params = {}) ⇒ Struct

Given an identity (an email address or a domain), sets whether Amazon SES includes the original email headers in the Amazon Simple Notification Service (Amazon SNS) notifications of a specified type.

You can execute this operation no more than once per second.

For more information about using notifications with Amazon SES, see the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html

Examples:

Example: SetIdentityHeadersInNotificationsEnabled


# The following example configures Amazon SES to include the original email headers in the Amazon SNS bounce notifications
# for an identity:

resp = client.set_identity_headers_in_notifications_enabled({
  enabled: true, 
  identity: "[email protected]", 
  notification_type: "Bounce", 
})

Request syntax with placeholder values


resp = client.set_identity_headers_in_notifications_enabled({
  identity: "Identity", # required
  notification_type: "Bounce", # required, accepts Bounce, Complaint, Delivery
  enabled: false, # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identity (required, String)

    The identity for which to enable or disable headers in notifications. Examples: ‘[email protected]`, `example.com`.

  • :notification_type (required, String)

    The notification type for which to enable or disable headers in notifications.

  • :enabled (required, Boolean)

    Sets whether Amazon SES includes the original email headers in Amazon SNS notifications of the specified notification type. A value of ‘true` specifies that Amazon SES will include headers in notifications, and a value of `false` specifies that Amazon SES will not include headers in notifications.

    This value can only be set when ‘NotificationType` is already set to use a particular Amazon SNS topic.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



3996
3997
3998
3999
# File 'lib/aws-sdk-ses/client.rb', line 3996

def set_identity_headers_in_notifications_enabled(params = {}, options = {})
  req = build_request(:set_identity_headers_in_notifications_enabled, params)
  req.send_request(options)
end

#set_identity_mail_from_domain(params = {}) ⇒ Struct

Enables or disables the custom MAIL FROM domain setup for a verified identity (an email address or a domain).

To send emails using the specified MAIL FROM domain, you must add an MX record to your MAIL FROM domain’s DNS settings. If you want your emails to pass Sender Policy Framework (SPF) checks, you must also add or update an SPF record. For more information, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from-set.html

Examples:

Example: SetIdentityMailFromDomain


# The following example configures Amazon SES to use a custom MAIL FROM domain for an identity:

resp = client.set_identity_mail_from_domain({
  behavior_on_mx_failure: "UseDefaultValue", 
  identity: "[email protected]", 
  mail_from_domain: "bounces.example.com", 
})

Request syntax with placeholder values


resp = client.set_identity_mail_from_domain({
  identity: "Identity", # required
  mail_from_domain: "MailFromDomainName",
  behavior_on_mx_failure: "UseDefaultValue", # accepts UseDefaultValue, RejectMessage
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identity (required, String)

    The verified identity for which you want to enable or disable the specified custom MAIL FROM domain.

  • :mail_from_domain (String)

    The custom MAIL FROM domain that you want the verified identity to use. The MAIL FROM domain must 1) be a subdomain of the verified identity, 2) not be used in a “From” address if the MAIL FROM domain is the destination of email feedback forwarding (for more information, see the [Amazon SES Developer Guide]), and 3) not be used to receive emails. A value of ‘null` disables the custom MAIL FROM setting for the identity.

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html

  • :behavior_on_mx_failure (String)

    The action that you want Amazon SES to take if it cannot successfully read the required MX record when you send an email. If you choose ‘UseDefaultValue`, Amazon SES will use amazonses.com (or a subdomain of that) as the MAIL FROM domain. If you choose `RejectMessage`, Amazon SES will return a `MailFromDomainNotVerified` error and not send the email.

    The action specified in ‘BehaviorOnMXFailure` is taken when the custom MAIL FROM domain setup is in the `Pending`, `Failed`, and `TemporaryFailure` states.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



4070
4071
4072
4073
# File 'lib/aws-sdk-ses/client.rb', line 4070

def set_identity_mail_from_domain(params = {}, options = {})
  req = build_request(:set_identity_mail_from_domain, params)
  req.send_request(options)
end

#set_identity_notification_topic(params = {}) ⇒ Struct

Sets an Amazon Simple Notification Service (Amazon SNS) topic to use when delivering notifications. When you use this operation, you specify a verified identity, such as an email address or domain. When you send an email that uses the chosen identity in the Source field, Amazon SES sends notifications to the topic you specified. You can send bounce, complaint, or delivery notifications (or any combination of the three) to the Amazon SNS topic that you specify.

You can execute this operation no more than once per second.

For more information about feedback notification, see the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html

Examples:

Example: SetIdentityNotificationTopic


# The following example sets the Amazon SNS topic to which Amazon SES will publish bounce, complaint, and/or delivery
# notifications for emails sent with the specified identity as the Source:

resp = client.set_identity_notification_topic({
  identity: "[email protected]", 
  notification_type: "Bounce", 
  sns_topic: "arn:aws:sns:us-west-2:111122223333:MyTopic", 
})

Request syntax with placeholder values


resp = client.set_identity_notification_topic({
  identity: "Identity", # required
  notification_type: "Bounce", # required, accepts Bounce, Complaint, Delivery
  sns_topic: "NotificationTopic",
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :identity (required, String)

    The identity (email address or domain) that you want to set the Amazon SNS topic for.

    You can only specify a verified identity for this parameter.

    You can specify an identity by using its name or by using its Amazon Resource Name (ARN). The following examples are all valid identities: ‘[email protected]`, `example.com`, `arn:aws:ses:us-east-1:123456789012:identity/example.com`.

  • :notification_type (required, String)

    The type of notifications that will be published to the specified Amazon SNS topic.

  • :sns_topic (String)

    The Amazon Resource Name (ARN) of the Amazon SNS topic. If the parameter is omitted from the request or a null value is passed, ‘SnsTopic` is cleared and publishing is disabled.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



4138
4139
4140
4141
# File 'lib/aws-sdk-ses/client.rb', line 4138

def set_identity_notification_topic(params = {}, options = {})
  req = build_request(:set_identity_notification_topic, params)
  req.send_request(options)
end

#set_receipt_rule_position(params = {}) ⇒ Struct

Sets the position of the specified receipt rule in the receipt rule set.

For information about managing receipt rules, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html

Examples:

Example: SetReceiptRulePosition


# The following example sets the position of a receipt rule in a receipt rule set:

resp = client.set_receipt_rule_position({
  after: "PutRuleAfterThisRule", 
  rule_name: "RuleToReposition", 
  rule_set_name: "MyRuleSet", 
})

Request syntax with placeholder values


resp = client.set_receipt_rule_position({
  rule_set_name: "ReceiptRuleSetName", # required
  rule_name: "ReceiptRuleName", # required
  after: "ReceiptRuleName",
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :rule_set_name (required, String)

    The name of the receipt rule set that contains the receipt rule to reposition.

  • :rule_name (required, String)

    The name of the receipt rule to reposition.

  • :after (String)

    The name of the receipt rule after which to place the specified receipt rule.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



4191
4192
4193
4194
# File 'lib/aws-sdk-ses/client.rb', line 4191

def set_receipt_rule_position(params = {}, options = {})
  req = build_request(:set_receipt_rule_position, params)
  req.send_request(options)
end

#test_render_template(params = {}) ⇒ Types::TestRenderTemplateResponse

Creates a preview of the MIME content of an email when provided with a template and a set of replacement data.

You can execute this operation no more than once per second.

Examples:

Request syntax with placeholder values


resp = client.test_render_template({
  template_name: "TemplateName", # required
  template_data: "TemplateData", # required
})

Response structure


resp.rendered_template #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :template_name (required, String)

    The name of the template that you want to render.

  • :template_data (required, String)

    A list of replacement values to apply to the template. This parameter is a JSON object, typically consisting of key-value pairs in which the keys correspond to replacement tags in the email template.

Returns:

See Also:



4228
4229
4230
4231
# File 'lib/aws-sdk-ses/client.rb', line 4228

def test_render_template(params = {}, options = {})
  req = build_request(:test_render_template, params)
  req.send_request(options)
end

#update_account_sending_enabled(params = {}) ⇒ Struct

Enables or disables email sending across your entire Amazon SES account in the current AWS Region. You can use this operation in conjunction with Amazon CloudWatch alarms to temporarily pause email sending across your Amazon SES account in a given AWS Region when reputation metrics (such as your bounce or complaint rates) reach certain thresholds.

You can execute this operation no more than once per second.

Examples:

Example: UpdateAccountSendingEnabled


# The following example updated the sending status for this account.

resp = client.({
  enabled: true, 
})

Request syntax with placeholder values


resp = client.({
  enabled: false,
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :enabled (Boolean)

    Describes whether email sending is enabled or disabled for your Amazon SES account in the current AWS Region.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



4267
4268
4269
4270
# File 'lib/aws-sdk-ses/client.rb', line 4267

def (params = {}, options = {})
  req = build_request(:update_account_sending_enabled, params)
  req.send_request(options)
end

#update_configuration_set_event_destination(params = {}) ⇒ Struct

Updates the event destination of a configuration set. Event destinations are associated with configuration sets, which enable you to publish email sending events to Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS). For information about using configuration sets, see [Monitoring Your Amazon SES Sending Activity] in the *Amazon SES Developer Guide.*

<note markdown=“1”> When you create or update an event destination, you must provide one, and only one, destination. The destination can be Amazon CloudWatch, Amazon Kinesis Firehose, or Amazon Simple Notification Service (Amazon SNS).

</note>

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html

Examples:

Request syntax with placeholder values


resp = client.update_configuration_set_event_destination({
  configuration_set_name: "ConfigurationSetName", # required
  event_destination: { # required
    name: "EventDestinationName", # required
    enabled: false,
    matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery, open, click, renderingFailure
    kinesis_firehose_destination: {
      iam_role_arn: "AmazonResourceName", # required
      delivery_stream_arn: "AmazonResourceName", # required
    },
    cloud_watch_destination: {
      dimension_configurations: [ # required
        {
          dimension_name: "DimensionName", # required
          dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
          default_dimension_value: "DefaultDimensionValue", # required
        },
      ],
    },
    sns_destination: {
      topic_arn: "AmazonResourceName", # required
    },
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :configuration_set_name (required, String)

    The name of the configuration set that contains the event destination that you want to update.

  • :event_destination (required, Types::EventDestination)

    The event destination object that you want to apply to the specified configuration set.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



4333
4334
4335
4336
# File 'lib/aws-sdk-ses/client.rb', line 4333

def update_configuration_set_event_destination(params = {}, options = {})
  req = build_request(:update_configuration_set_event_destination, params)
  req.send_request(options)
end

#update_configuration_set_reputation_metrics_enabled(params = {}) ⇒ Struct

Enables or disables the publishing of reputation metrics for emails sent using a specific configuration set in a given AWS Region. Reputation metrics include bounce and complaint rates. These metrics are published to Amazon CloudWatch. By using CloudWatch, you can create alarms when bounce or complaint rates exceed certain thresholds.

You can execute this operation no more than once per second.

Examples:

Example: UpdateConfigurationSetReputationMetricsEnabled


# Set the reputationMetricsEnabled flag for a specific configuration set.

resp = client.update_configuration_set_reputation_metrics_enabled({
  configuration_set_name: "foo", 
  enabled: true, 
})

Request syntax with placeholder values


resp = client.update_configuration_set_reputation_metrics_enabled({
  configuration_set_name: "ConfigurationSetName", # required
  enabled: false, # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :configuration_set_name (required, String)

    The name of the configuration set that you want to update.

  • :enabled (required, Boolean)

    Describes whether or not Amazon SES will publish reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



4378
4379
4380
4381
# File 'lib/aws-sdk-ses/client.rb', line 4378

def update_configuration_set_reputation_metrics_enabled(params = {}, options = {})
  req = build_request(:update_configuration_set_reputation_metrics_enabled, params)
  req.send_request(options)
end

#update_configuration_set_sending_enabled(params = {}) ⇒ Struct

Enables or disables email sending for messages sent using a specific configuration set in a given AWS Region. You can use this operation in conjunction with Amazon CloudWatch alarms to temporarily pause email sending for a configuration set when the reputation metrics for that configuration set (such as your bounce on complaint rate) exceed certain thresholds.

You can execute this operation no more than once per second.

Examples:

Example: UpdateConfigurationSetReputationMetricsEnabled


# Set the sending enabled flag for a specific configuration set.

resp = client.update_configuration_set_sending_enabled({
  configuration_set_name: "foo", 
  enabled: true, 
})

Request syntax with placeholder values


resp = client.update_configuration_set_sending_enabled({
  configuration_set_name: "ConfigurationSetName", # required
  enabled: false, # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :configuration_set_name (required, String)

    The name of the configuration set that you want to update.

  • :enabled (required, Boolean)

    Describes whether email sending is enabled or disabled for the configuration set.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



4422
4423
4424
4425
# File 'lib/aws-sdk-ses/client.rb', line 4422

def update_configuration_set_sending_enabled(params = {}, options = {})
  req = build_request(:update_configuration_set_sending_enabled, params)
  req.send_request(options)
end

#update_configuration_set_tracking_options(params = {}) ⇒ Struct

Modifies an association between a configuration set and a custom domain for open and click event tracking.

By default, images and links used for tracking open and click events are hosted on domains operated by Amazon SES. You can configure a subdomain of your own to handle these events. For information about using custom domains, see the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html

Examples:

Request syntax with placeholder values


resp = client.update_configuration_set_tracking_options({
  configuration_set_name: "ConfigurationSetName", # required
  tracking_options: { # required
    custom_redirect_domain: "CustomRedirectDomain",
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :configuration_set_name (required, String)

    The name of the configuration set for which you want to update the custom tracking domain.

  • :tracking_options (required, Types::TrackingOptions)

    A domain that is used to redirect email recipients to an Amazon SES-operated domain. This domain captures open and click events generated by Amazon SES emails.

    For more information, see [Configuring Custom Domains to Handle Open and Click Tracking](ses/latest/DeveloperGuide/configure-custom-open-click-domains.html) in the *Amazon SES Developer Guide*.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



4468
4469
4470
4471
# File 'lib/aws-sdk-ses/client.rb', line 4468

def update_configuration_set_tracking_options(params = {}, options = {})
  req = build_request(:update_configuration_set_tracking_options, params)
  req.send_request(options)
end

#update_custom_verification_email_template(params = {}) ⇒ Struct

Updates an existing custom verification email template.

For more information about custom verification email templates, see

Using Custom Verification Email Templates][1

in the *Amazon SES

Developer Guide*.

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html

Examples:

Request syntax with placeholder values


resp = client.update_custom_verification_email_template({
  template_name: "TemplateName", # required
  from_email_address: "FromAddress",
  template_subject: "Subject",
  template_content: "TemplateContent",
  success_redirection_url: "SuccessRedirectionURL",
  failure_redirection_url: "FailureRedirectionURL",
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :template_name (required, String)

    The name of the custom verification email template that you want to update.

  • :from_email_address (String)

    The email address that the custom verification email is sent from.

  • :template_subject (String)

    The subject line of the custom verification email.

  • :template_content (String)

    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] in the *Amazon SES Developer Guide*.

    [1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html#custom-verification-emails-faq

  • :success_redirection_url (String)

    The URL that the recipient of the verification email is sent to if his or her address is successfully verified.

  • :failure_redirection_url (String)

    The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



4530
4531
4532
4533
# File 'lib/aws-sdk-ses/client.rb', line 4530

def update_custom_verification_email_template(params = {}, options = {})
  req = build_request(:update_custom_verification_email_template, params)
  req.send_request(options)
end

#update_receipt_rule(params = {}) ⇒ Struct

Updates a receipt rule.

For information about managing receipt rules, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html

Examples:

Example: UpdateReceiptRule


# The following example updates a receipt rule to use an Amazon S3 action:

resp = client.update_receipt_rule({
  rule: {
    actions: [
      {
        s3_action: {
          bucket_name: "MyBucket", 
          object_key_prefix: "email", 
        }, 
      }, 
    ], 
    enabled: true, 
    name: "MyRule", 
    scan_enabled: true, 
    tls_policy: "Optional", 
  }, 
  rule_set_name: "MyRuleSet", 
})

Request syntax with placeholder values


resp = client.update_receipt_rule({
  rule_set_name: "ReceiptRuleSetName", # required
  rule: { # required
    name: "ReceiptRuleName", # required
    enabled: false,
    tls_policy: "Require", # accepts Require, Optional
    recipients: ["Recipient"],
    actions: [
      {
        s3_action: {
          topic_arn: "AmazonResourceName",
          bucket_name: "S3BucketName", # required
          object_key_prefix: "S3KeyPrefix",
          kms_key_arn: "AmazonResourceName",
        },
        bounce_action: {
          topic_arn: "AmazonResourceName",
          smtp_reply_code: "BounceSmtpReplyCode", # required
          status_code: "BounceStatusCode",
          message: "BounceMessage", # required
          sender: "Address", # required
        },
        workmail_action: {
          topic_arn: "AmazonResourceName",
          organization_arn: "AmazonResourceName", # required
        },
        lambda_action: {
          topic_arn: "AmazonResourceName",
          function_arn: "AmazonResourceName", # required
          invocation_type: "Event", # accepts Event, RequestResponse
        },
        stop_action: {
          scope: "RuleSet", # required, accepts RuleSet
          topic_arn: "AmazonResourceName",
        },
        add_header_action: {
          header_name: "HeaderName", # required
          header_value: "HeaderValue", # required
        },
        sns_action: {
          topic_arn: "AmazonResourceName", # required
          encoding: "UTF-8", # accepts UTF-8, Base64
        },
      },
    ],
    scan_enabled: false,
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :rule_set_name (required, String)

    The name of the receipt rule set that the receipt rule belongs to.

  • :rule (required, Types::ReceiptRule)

    A data structure that contains the updated receipt rule information.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



4632
4633
4634
4635
# File 'lib/aws-sdk-ses/client.rb', line 4632

def update_receipt_rule(params = {}, options = {})
  req = build_request(:update_receipt_rule, params)
  req.send_request(options)
end

#update_template(params = {}) ⇒ Struct

Updates an email template. Email templates enable you to send personalized email to one or more destinations in a single API operation. For more information, see the [Amazon SES Developer Guide].

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html

Examples:

Request syntax with placeholder values


resp = client.update_template({
  template: { # required
    template_name: "TemplateName", # required
    subject_part: "SubjectPart",
    text_part: "TextPart",
    html_part: "HtmlPart",
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :template (required, Types::Template)

    The content of the email, composed of a subject line, an HTML part, and a text-only part.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



4669
4670
4671
4672
# File 'lib/aws-sdk-ses/client.rb', line 4669

def update_template(params = {}, options = {})
  req = build_request(:update_template, params)
  req.send_request(options)
end

#verify_domain_dkim(params = {}) ⇒ Types::VerifyDomainDkimResponse

Returns a set of DKIM tokens for a domain. DKIM tokens are character strings that represent your domain’s identity. Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign email originating from that domain.

You can execute this operation no more than once per second.

To enable or disable Easy DKIM signing for a domain, use the ‘SetIdentityDkimEnabled` operation.

For more information about creating DNS records using DKIM tokens, go to the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html

Examples:

Example: VerifyDomainDkim


# The following example generates DKIM tokens for a domain that has been verified with Amazon SES:

resp = client.verify_domain_dkim({
  domain: "example.com", 
})

resp.to_h outputs the following:
{
  dkim_tokens: [
    "EXAMPLEq76owjnks3lnluwg65scbemvw", 
    "EXAMPLEi3dnsj67hstzaj673klariwx2", 
    "EXAMPLEwfbtcukvimehexktmdtaz6naj", 
  ], 
}

Request syntax with placeholder values


resp = client.verify_domain_dkim({
  domain: "Domain", # required
})

Response structure


resp.dkim_tokens #=> Array
resp.dkim_tokens[0] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :domain (required, String)

    The name of the domain to be verified for Easy DKIM signing.

Returns:

See Also:



4734
4735
4736
4737
# File 'lib/aws-sdk-ses/client.rb', line 4734

def verify_domain_dkim(params = {}, options = {})
  req = build_request(:verify_domain_dkim, params)
  req.send_request(options)
end

#verify_domain_identity(params = {}) ⇒ Types::VerifyDomainIdentityResponse

Adds a domain to the list of identities for your Amazon SES account in the current AWS Region and attempts to verify it. For more information about verifying domains, see [Verifying Email Addresses and Domains] in the *Amazon SES Developer Guide.*

You can execute this operation no more than once per second.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html

Examples:

Example: VerifyDomainIdentity


# The following example starts the domain verification process with Amazon SES:

resp = client.verify_domain_identity({
  domain: "example.com", 
})

resp.to_h outputs the following:
{
  verification_token: "eoEmxw+YaYhb3h3iVJHuXMJXqeu1q1/wwmvjuEXAMPLE", 
}

Request syntax with placeholder values


resp = client.verify_domain_identity({
  domain: "Domain", # required
})

Response structure


resp.verification_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :domain (required, String)

    The domain to be verified.

Returns:

See Also:



4785
4786
4787
4788
# File 'lib/aws-sdk-ses/client.rb', line 4785

def verify_domain_identity(params = {}, options = {})
  req = build_request(:verify_domain_identity, params)
  req.send_request(options)
end

#verify_email_address(params = {}) ⇒ Struct

Deprecated. Use the ‘VerifyEmailIdentity` operation to verify a new email address.

Examples:

Example: VerifyEmailAddress


# The following example starts the email address verification process with Amazon SES:

resp = client.verify_email_address({
  email_address: "[email protected]", 
})

Request syntax with placeholder values


resp = client.verify_email_address({
  email_address: "Address", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :email_address (required, String)

    The email address to be verified.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



4817
4818
4819
4820
# File 'lib/aws-sdk-ses/client.rb', line 4817

def verify_email_address(params = {}, options = {})
  req = build_request(:verify_email_address, params)
  req.send_request(options)
end

#verify_email_identity(params = {}) ⇒ Struct

Adds an email address to the list of identities for your Amazon SES account in the current AWS region and attempts to verify it. As a result of executing this operation, a verification email is sent to the specified address.

You can execute this operation no more than once per second.

Examples:

Example: VerifyEmailIdentity


# The following example starts the email address verification process with Amazon SES:

resp = client.verify_email_identity({
  email_address: "[email protected]", 
})

Request syntax with placeholder values


resp = client.verify_email_identity({
  email_address: "Address", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :email_address (required, String)

    The email address to be verified.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



4853
4854
4855
4856
# File 'lib/aws-sdk-ses/client.rb', line 4853

def verify_email_identity(params = {}, options = {})
  req = build_request(:verify_email_identity, params)
  req.send_request(options)
end

#wait_until(waiter_name, params = {}, options = {}) {|w.waiter| ... } ⇒ Boolean

Polls an API operation until a resource enters a desired state.

## Basic Usage

A waiter will call an API operation until:

  • It is successful

  • It enters a terminal state

  • It makes the maximum number of attempts

In between attempts, the waiter will sleep.

# polls in a loop, sleeping between attempts
client.waiter_until(waiter_name, params)

## Configuration

You can configure the maximum number of polling attempts, and the delay (in seconds) between each polling attempt. You can pass configuration as the final arguments hash.

# poll for ~25 seconds
client.wait_until(waiter_name, params, {
  max_attempts: 5,
  delay: 5,
})

## Callbacks

You can be notified before each polling attempt and before each delay. If you throw ‘:success` or `:failure` from these callbacks, it will terminate the waiter.

started_at = Time.now
client.wait_until(waiter_name, params, {

  # disable max attempts
  max_attempts: nil,

  # poll for 1 hour, instead of a number of attempts
  before_wait: -> (attempts, response) do
    throw :failure if Time.now - started_at > 3600
  end
})

## Handling Errors

When a waiter is unsuccessful, it will raise an error. All of the failure errors extend from Waiters::Errors::WaiterFailed.

begin
  client.wait_until(...)
rescue Aws::Waiters::Errors::WaiterFailed
  # resource did not enter the desired state in time
end

## Valid Waiters

The following table lists the valid waiter names, the operations they call, and the default ‘:delay` and `:max_attempts` values.

| waiter_name | params | :delay | :max_attempts | | ————— | ————————————— | ——– | ————- | | identity_exists | #get_identity_verification_attributes | 3 | 20 |

Parameters:

  • waiter_name (Symbol)
  • params (Hash) (defaults to: {})

    ({})

  • options (Hash) (defaults to: {})

    ({})

Options Hash (options):

  • :max_attempts (Integer)
  • :delay (Integer)
  • :before_attempt (Proc)
  • :before_wait (Proc)

Yields:

  • (w.waiter)

Returns:

  • (Boolean)

    Returns ‘true` if the waiter was successful.

Raises:

  • (Errors::FailureStateError)

    Raised when the waiter terminates because the waiter has entered a state that it will not transition out of, preventing success.

  • (Errors::TooManyAttemptsError)

    Raised when the configured maximum number of attempts have been made, and the waiter is not yet successful.

  • (Errors::UnexpectedError)

    Raised when an error is encounted while polling for a resource that is not expected.

  • (Errors::NoSuchWaiterError)

    Raised when you request to wait for an unknown state.



4963
4964
4965
4966
4967
# File 'lib/aws-sdk-ses/client.rb', line 4963

def wait_until(waiter_name, params = {}, options = {})
  w = waiter(waiter_name, options)
  yield(w.waiter) if block_given? # deprecated
  w.wait(params)
end

#waiter_namesObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Deprecated.


4971
4972
4973
# File 'lib/aws-sdk-ses/client.rb', line 4971

def waiter_names
  waiters.keys
end