You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SES::Types::ListIdentitiesRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListIdentitiesRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  identity_type: "EmailAddress", # accepts EmailAddress, Domain
  next_token: "NextToken",
  max_items: 1,
}

Represents a request to return a list of all identities (email addresses and domains) that you have attempted to verify under your AWS account, regardless of verification status.

Instance Attribute Summary collapse

Instance Attribute Details

#identity_typeString

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

Possible values:

  • EmailAddress
  • Domain

Returns:

  • (String)

    The type of the identities to list.

#max_itemsInteger

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

Returns:

  • (Integer)

    The maximum number of identities per page.

#next_tokenString

The token to use for pagination.

Returns:

  • (String)

    The token to use for pagination.