Class: Aws::SES::Types::GetIdentityDkimAttributesRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ses/types.rb

Overview

Note:

When making an API call, you may pass GetIdentityDkimAttributesRequest data as a hash:

{
  identities: ["Identity"], # required
}

Represents a request for the status of Amazon SES Easy DKIM signing for an identity. For domain identities, this request also returns the DKIM tokens that are required for Easy DKIM signing, and whether Amazon SES successfully verified that these tokens were published. For more information about Easy DKIM, see the [Amazon SES Developer Guide].

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

Instance Attribute Summary collapse

Instance Attribute Details

#identitiesArray<String>

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

Returns:

  • (Array<String>)


1845
1846
1847
1848
# File 'lib/aws-sdk-ses/types.rb', line 1845

class GetIdentityDkimAttributesRequest < Struct.new(
  :identities)
  include Aws::Structure
end