ses

package
v1.4.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 14, 2016 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Overview

Package ses provides a client for Amazon Simple Email Service.

Index

Examples

Constants

View Source
const (
	// @enum BehaviorOnMXFailure
	BehaviorOnMXFailureUseDefaultValue = "UseDefaultValue"
	// @enum BehaviorOnMXFailure
	BehaviorOnMXFailureRejectMessage = "RejectMessage"
)
View Source
const (
	// @enum BounceType
	BounceTypeDoesNotExist = "DoesNotExist"
	// @enum BounceType
	BounceTypeMessageTooLarge = "MessageTooLarge"
	// @enum BounceType
	BounceTypeExceededQuota = "ExceededQuota"
	// @enum BounceType
	BounceTypeContentRejected = "ContentRejected"
	// @enum BounceType
	BounceTypeUndefined = "Undefined"
	// @enum BounceType
	BounceTypeTemporaryFailure = "TemporaryFailure"
)
View Source
const (
	// @enum CustomMailFromStatus
	CustomMailFromStatusPending = "Pending"
	// @enum CustomMailFromStatus
	CustomMailFromStatusSuccess = "Success"
	// @enum CustomMailFromStatus
	CustomMailFromStatusFailed = "Failed"
	// @enum CustomMailFromStatus
	CustomMailFromStatusTemporaryFailure = "TemporaryFailure"
)
View Source
const (
	// @enum DsnAction
	DsnActionFailed = "failed"
	// @enum DsnAction
	DsnActionDelayed = "delayed"
	// @enum DsnAction
	DsnActionDelivered = "delivered"
	// @enum DsnAction
	DsnActionRelayed = "relayed"
	// @enum DsnAction
	DsnActionExpanded = "expanded"
)
View Source
const (
	// @enum IdentityType
	IdentityTypeEmailAddress = "EmailAddress"
	// @enum IdentityType
	IdentityTypeDomain = "Domain"
)
View Source
const (
	// @enum InvocationType
	InvocationTypeEvent = "Event"
	// @enum InvocationType
	InvocationTypeRequestResponse = "RequestResponse"
)
View Source
const (
	// @enum NotificationType
	NotificationTypeBounce = "Bounce"
	// @enum NotificationType
	NotificationTypeComplaint = "Complaint"
	// @enum NotificationType
	NotificationTypeDelivery = "Delivery"
)
View Source
const (
	// @enum ReceiptFilterPolicy
	ReceiptFilterPolicyBlock = "Block"
	// @enum ReceiptFilterPolicy
	ReceiptFilterPolicyAllow = "Allow"
)
View Source
const (
	// @enum SNSActionEncoding
	SNSActionEncodingUtf8 = "UTF-8"
	// @enum SNSActionEncoding
	SNSActionEncodingBase64 = "Base64"
)
View Source
const (
	// @enum TlsPolicy
	TlsPolicyRequire = "Require"
	// @enum TlsPolicy
	TlsPolicyOptional = "Optional"
)
View Source
const (
	// @enum VerificationStatus
	VerificationStatusPending = "Pending"
	// @enum VerificationStatus
	VerificationStatusSuccess = "Success"
	// @enum VerificationStatus
	VerificationStatusFailed = "Failed"
	// @enum VerificationStatus
	VerificationStatusTemporaryFailure = "TemporaryFailure"
	// @enum VerificationStatus
	VerificationStatusNotStarted = "NotStarted"
)
View Source
const ServiceName = "email"

A ServiceName is the name of the service the client will make API calls to.

View Source
const (
	// @enum StopScope
	StopScopeRuleSet = "RuleSet"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type AddHeaderAction added in v0.9.10

type AddHeaderAction struct {

	// The name of the header to add. Must be between 1 and 50 characters, inclusive,
	// and consist of alphanumeric (a-z, A-Z, 0-9) characters and dashes only.
	HeaderName *string `type:"string" required:"true"`

	// Must be less than 2048 characters, and must not contain newline characters
	// ("\r" or "\n").
	HeaderValue *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

When included in a receipt rule, this action adds a header to the received email.

For information about adding a header using a receipt rule, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-add-header.html).

func (AddHeaderAction) GoString added in v0.9.10

func (s AddHeaderAction) GoString() string

GoString returns the string representation

func (AddHeaderAction) String added in v0.9.10

func (s AddHeaderAction) String() string

String returns the string representation

func (*AddHeaderAction) Validate added in v1.1.21

func (s *AddHeaderAction) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type Body

type Body struct {

	// The content of the message, in HTML format. Use this for email clients that
	// can process HTML. You can include clickable links, formatted text, and much
	// more in an HTML message.
	Html *Content `type:"structure"`

	// The content of the message, in text format. Use this for text-based email
	// clients, or clients on high-latency networks (such as mobile devices).
	Text *Content `type:"structure"`
	// contains filtered or unexported fields
}

Represents the body of the message. You can specify text, HTML, or both. If you use both, then the message should display correctly in the widest variety of email clients.

func (Body) GoString added in v0.6.5

func (s Body) GoString() string

GoString returns the string representation

func (Body) String added in v0.6.5

func (s Body) String() string

String returns the string representation

func (*Body) Validate added in v1.1.21

func (s *Body) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BounceAction added in v0.9.10

type BounceAction struct {

	// Human-readable text to include in the bounce message.
	Message *string `type:"string" required:"true"`

	// The email address of the sender of the bounced email. This is the address
	// from which the bounce message will be sent.
	Sender *string `type:"string" required:"true"`

	// The SMTP reply code, as defined by RFC 5321 (https://tools.ietf.org/html/rfc5321).
	SmtpReplyCode *string `type:"string" required:"true"`

	// The SMTP enhanced status code, as defined by RFC 3463 (https://tools.ietf.org/html/rfc3463).
	StatusCode *string `type:"string"`

	// The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the
	// bounce action is taken. An example of an Amazon SNS topic ARN is arn:aws:sns:us-west-2:123456789012:MyTopic.
	// For more information about Amazon SNS topics, see the Amazon SNS Developer
	// Guide (http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html).
	TopicArn *string `type:"string"`
	// contains filtered or unexported fields
}

When included in a receipt rule, this action rejects the received email by returning a bounce response to the sender and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS).

For information about sending a bounce message in response to a received email, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-bounce.html).

func (BounceAction) GoString added in v0.9.10

func (s BounceAction) GoString() string

GoString returns the string representation

func (BounceAction) String added in v0.9.10

func (s BounceAction) String() string

String returns the string representation

func (*BounceAction) Validate added in v1.1.21

func (s *BounceAction) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BouncedRecipientInfo added in v0.9.10

type BouncedRecipientInfo struct {

	// The reason for the bounce. You must provide either this parameter or RecipientDsnFields.
	BounceType *string `type:"string" enum:"BounceType"`

	// The email address of the recipient of the bounced email.
	Recipient *string `type:"string" required:"true"`

	// 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 receive email for the recipient of the bounced email. For more information
	// about sending authorization, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).
	RecipientArn *string `type:"string"`

	// Recipient-related DSN fields, most of which would normally be filled in automatically
	// when provided with a BounceType. You must provide either this parameter or
	// BounceType.
	RecipientDsnFields *RecipientDsnFields `type:"structure"`
	// contains filtered or unexported fields
}

Recipient-related information to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces.

For information about receiving email through Amazon SES, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html).

func (BouncedRecipientInfo) GoString added in v0.9.10

func (s BouncedRecipientInfo) GoString() string

GoString returns the string representation

func (BouncedRecipientInfo) String added in v0.9.10

func (s BouncedRecipientInfo) String() string

String returns the string representation

func (*BouncedRecipientInfo) Validate added in v1.1.21

func (s *BouncedRecipientInfo) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CloneReceiptRuleSetInput added in v0.9.10

type CloneReceiptRuleSetInput struct {

	// The name of the rule set to clone.
	OriginalRuleSetName *string `type:"string" required:"true"`

	// The name of the rule set to create. The name must:
	//
	//   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores
	// (_), or dashes (-).
	//
	//   Start and end with a letter or number.
	//
	//   Contain less than 64 characters.
	RuleSetName *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to create a receipt rule set by cloning an existing one. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (CloneReceiptRuleSetInput) GoString added in v0.9.10

func (s CloneReceiptRuleSetInput) GoString() string

GoString returns the string representation

func (CloneReceiptRuleSetInput) String added in v0.9.10

func (s CloneReceiptRuleSetInput) String() string

String returns the string representation

func (*CloneReceiptRuleSetInput) Validate added in v1.1.21

func (s *CloneReceiptRuleSetInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CloneReceiptRuleSetOutput added in v0.9.10

type CloneReceiptRuleSetOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (CloneReceiptRuleSetOutput) GoString added in v0.9.10

func (s CloneReceiptRuleSetOutput) GoString() string

GoString returns the string representation

func (CloneReceiptRuleSetOutput) String added in v0.9.10

func (s CloneReceiptRuleSetOutput) String() string

String returns the string representation

type Content

type Content struct {

	// The character set of the content.
	Charset *string `type:"string"`

	// The textual data of the content.
	Data *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents textual data, plus an optional character set specification.

By default, the text must be 7-bit ASCII, due to the constraints of the SMTP protocol. If the text must contain any other characters, then you must also specify a character set. Examples include UTF-8, ISO-8859-1, and Shift_JIS.

func (Content) GoString added in v0.6.5

func (s Content) GoString() string

GoString returns the string representation

func (Content) String added in v0.6.5

func (s Content) String() string

String returns the string representation

func (*Content) Validate added in v1.1.21

func (s *Content) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateReceiptFilterInput added in v0.9.10

type CreateReceiptFilterInput struct {

	// 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.
	Filter *ReceiptFilter `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to create a new IP address filter. You use IP address filters when you receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (CreateReceiptFilterInput) GoString added in v0.9.10

func (s CreateReceiptFilterInput) GoString() string

GoString returns the string representation

func (CreateReceiptFilterInput) String added in v0.9.10

func (s CreateReceiptFilterInput) String() string

String returns the string representation

func (*CreateReceiptFilterInput) Validate added in v1.1.21

func (s *CreateReceiptFilterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateReceiptFilterOutput added in v0.9.10

type CreateReceiptFilterOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (CreateReceiptFilterOutput) GoString added in v0.9.10

func (s CreateReceiptFilterOutput) GoString() string

GoString returns the string representation

func (CreateReceiptFilterOutput) String added in v0.9.10

func (s CreateReceiptFilterOutput) String() string

String returns the string representation

type CreateReceiptRuleInput added in v0.9.10

type CreateReceiptRuleInput struct {

	// 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.
	After *string `type:"string"`

	// A data structure that contains the specified rule's name, actions, recipients,
	// domains, enabled status, scan status, and TLS policy.
	Rule *ReceiptRule `type:"structure" required:"true"`

	// The name of the rule set to which to add the rule.
	RuleSetName *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to create a receipt rule. You use receipt rules to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (CreateReceiptRuleInput) GoString added in v0.9.10

func (s CreateReceiptRuleInput) GoString() string

GoString returns the string representation

func (CreateReceiptRuleInput) String added in v0.9.10

func (s CreateReceiptRuleInput) String() string

String returns the string representation

func (*CreateReceiptRuleInput) Validate added in v1.1.21

func (s *CreateReceiptRuleInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateReceiptRuleOutput added in v0.9.10

type CreateReceiptRuleOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (CreateReceiptRuleOutput) GoString added in v0.9.10

func (s CreateReceiptRuleOutput) GoString() string

GoString returns the string representation

func (CreateReceiptRuleOutput) String added in v0.9.10

func (s CreateReceiptRuleOutput) String() string

String returns the string representation

type CreateReceiptRuleSetInput added in v0.9.10

type CreateReceiptRuleSetInput struct {

	// The name of the rule set to create. The name must:
	//
	//   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores
	// (_), or dashes (-).
	//
	//   Start and end with a letter or number.
	//
	//   Contain less than 64 characters.
	RuleSetName *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to create an empty receipt rule set. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (CreateReceiptRuleSetInput) GoString added in v0.9.10

func (s CreateReceiptRuleSetInput) GoString() string

GoString returns the string representation

func (CreateReceiptRuleSetInput) String added in v0.9.10

func (s CreateReceiptRuleSetInput) String() string

String returns the string representation

func (*CreateReceiptRuleSetInput) Validate added in v1.1.21

func (s *CreateReceiptRuleSetInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateReceiptRuleSetOutput added in v0.9.10

type CreateReceiptRuleSetOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (CreateReceiptRuleSetOutput) GoString added in v0.9.10

func (s CreateReceiptRuleSetOutput) GoString() string

GoString returns the string representation

func (CreateReceiptRuleSetOutput) String added in v0.9.10

String returns the string representation

type DeleteIdentityInput

type DeleteIdentityInput struct {

	// The identity to be removed from the list of identities for the AWS Account.
	Identity *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to delete one of your Amazon SES identities (an email address or domain).

func (DeleteIdentityInput) GoString added in v0.6.5

func (s DeleteIdentityInput) GoString() string

GoString returns the string representation

func (DeleteIdentityInput) String added in v0.6.5

func (s DeleteIdentityInput) String() string

String returns the string representation

func (*DeleteIdentityInput) Validate added in v1.1.21

func (s *DeleteIdentityInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteIdentityOutput

type DeleteIdentityOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (DeleteIdentityOutput) GoString added in v0.6.5

func (s DeleteIdentityOutput) GoString() string

GoString returns the string representation

func (DeleteIdentityOutput) String added in v0.6.5

func (s DeleteIdentityOutput) String() string

String returns the string representation

type DeleteIdentityPolicyInput added in v0.6.6

type DeleteIdentityPolicyInput struct {

	// 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: user@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.
	//
	// To successfully call this API, you must own the identity.
	Identity *string `type:"string" required:"true"`

	// The name of the policy to be deleted.
	PolicyName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to delete a sending authorization policy for an identity. Sending authorization is an Amazon SES feature that enables you to authorize other senders to use your identities. For information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).

func (DeleteIdentityPolicyInput) GoString added in v0.6.6

func (s DeleteIdentityPolicyInput) GoString() string

GoString returns the string representation

func (DeleteIdentityPolicyInput) String added in v0.6.6

func (s DeleteIdentityPolicyInput) String() string

String returns the string representation

func (*DeleteIdentityPolicyInput) Validate added in v1.1.21

func (s *DeleteIdentityPolicyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteIdentityPolicyOutput added in v0.6.6

type DeleteIdentityPolicyOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (DeleteIdentityPolicyOutput) GoString added in v0.6.6

func (s DeleteIdentityPolicyOutput) GoString() string

GoString returns the string representation

func (DeleteIdentityPolicyOutput) String added in v0.6.6

String returns the string representation

type DeleteReceiptFilterInput added in v0.9.10

type DeleteReceiptFilterInput struct {

	// The name of the IP address filter to delete.
	FilterName *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to delete an IP address filter. You use IP address filters when you receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (DeleteReceiptFilterInput) GoString added in v0.9.10

func (s DeleteReceiptFilterInput) GoString() string

GoString returns the string representation

func (DeleteReceiptFilterInput) String added in v0.9.10

func (s DeleteReceiptFilterInput) String() string

String returns the string representation

func (*DeleteReceiptFilterInput) Validate added in v1.1.21

func (s *DeleteReceiptFilterInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteReceiptFilterOutput added in v0.9.10

type DeleteReceiptFilterOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (DeleteReceiptFilterOutput) GoString added in v0.9.10

func (s DeleteReceiptFilterOutput) GoString() string

GoString returns the string representation

func (DeleteReceiptFilterOutput) String added in v0.9.10

func (s DeleteReceiptFilterOutput) String() string

String returns the string representation

type DeleteReceiptRuleInput added in v0.9.10

type DeleteReceiptRuleInput struct {

	// The name of the receipt rule to delete.
	RuleName *string `type:"string" required:"true"`

	// The name of the receipt rule set that contains the receipt rule to delete.
	RuleSetName *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to delete a receipt rule. You use receipt rules to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (DeleteReceiptRuleInput) GoString added in v0.9.10

func (s DeleteReceiptRuleInput) GoString() string

GoString returns the string representation

func (DeleteReceiptRuleInput) String added in v0.9.10

func (s DeleteReceiptRuleInput) String() string

String returns the string representation

func (*DeleteReceiptRuleInput) Validate added in v1.1.21

func (s *DeleteReceiptRuleInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteReceiptRuleOutput added in v0.9.10

type DeleteReceiptRuleOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (DeleteReceiptRuleOutput) GoString added in v0.9.10

func (s DeleteReceiptRuleOutput) GoString() string

GoString returns the string representation

func (DeleteReceiptRuleOutput) String added in v0.9.10

func (s DeleteReceiptRuleOutput) String() string

String returns the string representation

type DeleteReceiptRuleSetInput added in v0.9.10

type DeleteReceiptRuleSetInput struct {

	// The name of the receipt rule set to delete.
	RuleSetName *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to delete a receipt rule set and all of the receipt rules it contains. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (DeleteReceiptRuleSetInput) GoString added in v0.9.10

func (s DeleteReceiptRuleSetInput) GoString() string

GoString returns the string representation

func (DeleteReceiptRuleSetInput) String added in v0.9.10

func (s DeleteReceiptRuleSetInput) String() string

String returns the string representation

func (*DeleteReceiptRuleSetInput) Validate added in v1.1.21

func (s *DeleteReceiptRuleSetInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteReceiptRuleSetOutput added in v0.9.10

type DeleteReceiptRuleSetOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (DeleteReceiptRuleSetOutput) GoString added in v0.9.10

func (s DeleteReceiptRuleSetOutput) GoString() string

GoString returns the string representation

func (DeleteReceiptRuleSetOutput) String added in v0.9.10

String returns the string representation

type DeleteVerifiedEmailAddressInput

type DeleteVerifiedEmailAddressInput struct {

	// An email address to be removed from the list of verified addresses.
	EmailAddress *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to delete an email address from the list of email addresses you have attempted to verify under your AWS account.

func (DeleteVerifiedEmailAddressInput) GoString added in v0.6.5

GoString returns the string representation

func (DeleteVerifiedEmailAddressInput) String added in v0.6.5

String returns the string representation

func (*DeleteVerifiedEmailAddressInput) Validate added in v1.1.21

func (s *DeleteVerifiedEmailAddressInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteVerifiedEmailAddressOutput

type DeleteVerifiedEmailAddressOutput struct {
	// contains filtered or unexported fields
}

func (DeleteVerifiedEmailAddressOutput) GoString added in v0.6.5

GoString returns the string representation

func (DeleteVerifiedEmailAddressOutput) String added in v0.6.5

String returns the string representation

type DescribeActiveReceiptRuleSetInput added in v0.9.10

type DescribeActiveReceiptRuleSetInput struct {
	// contains filtered or unexported fields
}

Represents a request to return the metadata and receipt rules for the receipt rule set that is currently active. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (DescribeActiveReceiptRuleSetInput) GoString added in v0.9.10

GoString returns the string representation

func (DescribeActiveReceiptRuleSetInput) String added in v0.9.10

String returns the string representation

type DescribeActiveReceiptRuleSetOutput added in v0.9.10

type DescribeActiveReceiptRuleSetOutput struct {

	// The metadata for the currently active receipt rule set. The metadata consists
	// of the rule set name and a timestamp of when the rule set was created.
	Metadata *ReceiptRuleSetMetadata `type:"structure"`

	// The receipt rules that belong to the active rule set.
	Rules []*ReceiptRule `type:"list"`
	// contains filtered or unexported fields
}

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

func (DescribeActiveReceiptRuleSetOutput) GoString added in v0.9.10

GoString returns the string representation

func (DescribeActiveReceiptRuleSetOutput) String added in v0.9.10

String returns the string representation

type DescribeReceiptRuleInput added in v0.9.10

type DescribeReceiptRuleInput struct {

	// The name of the receipt rule.
	RuleName *string `type:"string" required:"true"`

	// The name of the receipt rule set to which the receipt rule belongs.
	RuleSetName *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to return the details of a receipt rule. You use receipt rules to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (DescribeReceiptRuleInput) GoString added in v0.9.10

func (s DescribeReceiptRuleInput) GoString() string

GoString returns the string representation

func (DescribeReceiptRuleInput) String added in v0.9.10

func (s DescribeReceiptRuleInput) String() string

String returns the string representation

func (*DescribeReceiptRuleInput) Validate added in v1.1.21

func (s *DescribeReceiptRuleInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeReceiptRuleOutput added in v0.9.10

type DescribeReceiptRuleOutput struct {

	// A data structure that contains the specified receipt rule's name, actions,
	// recipients, domains, enabled status, scan status, and Transport Layer Security
	// (TLS) policy.
	Rule *ReceiptRule `type:"structure"`
	// contains filtered or unexported fields
}

Represents the details of a receipt rule.

func (DescribeReceiptRuleOutput) GoString added in v0.9.10

func (s DescribeReceiptRuleOutput) GoString() string

GoString returns the string representation

func (DescribeReceiptRuleOutput) String added in v0.9.10

func (s DescribeReceiptRuleOutput) String() string

String returns the string representation

type DescribeReceiptRuleSetInput added in v0.9.10

type DescribeReceiptRuleSetInput struct {

	// The name of the receipt rule set to describe.
	RuleSetName *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to return the details of a receipt rule set. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (DescribeReceiptRuleSetInput) GoString added in v0.9.10

func (s DescribeReceiptRuleSetInput) GoString() string

GoString returns the string representation

func (DescribeReceiptRuleSetInput) String added in v0.9.10

String returns the string representation

func (*DescribeReceiptRuleSetInput) Validate added in v1.1.21

func (s *DescribeReceiptRuleSetInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeReceiptRuleSetOutput added in v0.9.10

type DescribeReceiptRuleSetOutput struct {

	// The metadata for the receipt rule set, which consists of the rule set name
	// and the timestamp of when the rule set was created.
	Metadata *ReceiptRuleSetMetadata `type:"structure"`

	// A list of the receipt rules that belong to the specified receipt rule set.
	Rules []*ReceiptRule `type:"list"`
	// contains filtered or unexported fields
}

Represents the details of the specified receipt rule set.

func (DescribeReceiptRuleSetOutput) GoString added in v0.9.10

func (s DescribeReceiptRuleSetOutput) GoString() string

GoString returns the string representation

func (DescribeReceiptRuleSetOutput) String added in v0.9.10

String returns the string representation

type Destination

type Destination struct {

	// The BCC: field(s) of the message.
	BccAddresses []*string `type:"list"`

	// The CC: field(s) of the message.
	CcAddresses []*string `type:"list"`

	// The To: field(s) of the message.
	ToAddresses []*string `type:"list"`
	// contains filtered or unexported fields
}

Represents the destination of the message, consisting of To:, CC:, and BCC: fields.

By default, the string must be 7-bit ASCII. If the text must contain any

other characters, then you must use MIME encoded-word syntax (RFC 2047) instead of a literal string. MIME encoded-word syntax uses the following form: =?charset?encoding?encoded-text?=. For more information, see RFC 2047 (http://tools.ietf.org/html/rfc2047).

func (Destination) GoString added in v0.6.5

func (s Destination) GoString() string

GoString returns the string representation

func (Destination) String added in v0.6.5

func (s Destination) String() string

String returns the string representation

type ExtensionField added in v0.9.10

type ExtensionField struct {

	// The name of the header to add. Must be between 1 and 50 characters, inclusive,
	// and consist of alphanumeric (a-z, A-Z, 0-9) characters and dashes only.
	Name *string `type:"string" required:"true"`

	// The value of the header to add. Must be less than 2048 characters, and must
	// not contain newline characters ("\r" or "\n").
	Value *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Additional X-headers to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces.

For information about receiving email through Amazon SES, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html).

func (ExtensionField) GoString added in v0.9.10

func (s ExtensionField) GoString() string

GoString returns the string representation

func (ExtensionField) String added in v0.9.10

func (s ExtensionField) String() string

String returns the string representation

func (*ExtensionField) Validate added in v1.1.21

func (s *ExtensionField) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetIdentityDkimAttributesInput added in v0.9.5

type GetIdentityDkimAttributesInput struct {

	// A list of one or more verified identities - email addresses, domains, or
	// both.
	Identities []*string `type:"list" required:"true"`
	// contains filtered or unexported fields
}

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 (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html).

func (GetIdentityDkimAttributesInput) GoString added in v0.9.5

GoString returns the string representation

func (GetIdentityDkimAttributesInput) String added in v0.9.5

String returns the string representation

func (*GetIdentityDkimAttributesInput) Validate added in v1.1.21

func (s *GetIdentityDkimAttributesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetIdentityDkimAttributesOutput added in v0.9.5

type GetIdentityDkimAttributesOutput struct {

	// The DKIM attributes for an email address or a domain.
	DkimAttributes map[string]*IdentityDkimAttributes `type:"map" required:"true"`
	// contains filtered or unexported fields
}

Represents the status of Amazon SES Easy DKIM signing for an identity. For domain identities, this response also contains the DKIM tokens that are required for Easy DKIM signing, and whether Amazon SES successfully verified that these tokens were published.

func (GetIdentityDkimAttributesOutput) GoString added in v0.9.5

GoString returns the string representation

func (GetIdentityDkimAttributesOutput) String added in v0.9.5

String returns the string representation

type GetIdentityMailFromDomainAttributesInput added in v1.1.11

type GetIdentityMailFromDomainAttributesInput struct {

	// A list of one or more identities.
	Identities []*string `type:"list" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to return the Amazon SES custom MAIL FROM attributes for a list of identities. For information about using a custom MAIL FROM domain, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html).

func (GetIdentityMailFromDomainAttributesInput) GoString added in v1.1.11

GoString returns the string representation

func (GetIdentityMailFromDomainAttributesInput) String added in v1.1.11

String returns the string representation

func (*GetIdentityMailFromDomainAttributesInput) Validate added in v1.1.21

Validate inspects the fields of the type to determine if they are valid.

type GetIdentityMailFromDomainAttributesOutput added in v1.1.11

type GetIdentityMailFromDomainAttributesOutput struct {

	// A map of identities to custom MAIL FROM attributes.
	MailFromDomainAttributes map[string]*IdentityMailFromDomainAttributes `type:"map" required:"true"`
	// contains filtered or unexported fields
}

Represents the custom MAIL FROM attributes for a list of identities.

func (GetIdentityMailFromDomainAttributesOutput) GoString added in v1.1.11

GoString returns the string representation

func (GetIdentityMailFromDomainAttributesOutput) String added in v1.1.11

String returns the string representation

type GetIdentityNotificationAttributesInput

type GetIdentityNotificationAttributesInput struct {

	// 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: user@example.com,
	// example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.
	Identities []*string `type:"list" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to return the notification attributes for a list of identities you verified with Amazon SES. For information about Amazon SES notifications, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html).

func (GetIdentityNotificationAttributesInput) GoString added in v0.6.5

GoString returns the string representation

func (GetIdentityNotificationAttributesInput) String added in v0.6.5

String returns the string representation

func (*GetIdentityNotificationAttributesInput) Validate added in v1.1.21

Validate inspects the fields of the type to determine if they are valid.

type GetIdentityNotificationAttributesOutput

type GetIdentityNotificationAttributesOutput struct {

	// A map of Identity to IdentityNotificationAttributes.
	NotificationAttributes map[string]*IdentityNotificationAttributes `type:"map" required:"true"`
	// contains filtered or unexported fields
}

Represents the notification attributes for a list of identities.

func (GetIdentityNotificationAttributesOutput) GoString added in v0.6.5

GoString returns the string representation

func (GetIdentityNotificationAttributesOutput) String added in v0.6.5

String returns the string representation

type GetIdentityPoliciesInput added in v0.6.6

type GetIdentityPoliciesInput struct {

	// 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:
	// user@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.
	//
	// To successfully call this API, you must own the identity.
	Identity *string `type:"string" required:"true"`

	// 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.
	PolicyNames []*string `type:"list" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to return the requested sending authorization policies for an identity. Sending authorization is an Amazon SES feature that enables you to authorize other senders to use your identities. For information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).

func (GetIdentityPoliciesInput) GoString added in v0.6.6

func (s GetIdentityPoliciesInput) GoString() string

GoString returns the string representation

func (GetIdentityPoliciesInput) String added in v0.6.6

func (s GetIdentityPoliciesInput) String() string

String returns the string representation

func (*GetIdentityPoliciesInput) Validate added in v1.1.21

func (s *GetIdentityPoliciesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetIdentityPoliciesOutput added in v0.6.6

type GetIdentityPoliciesOutput struct {

	// A map of policy names to policies.
	Policies map[string]*string `type:"map" required:"true"`
	// contains filtered or unexported fields
}

Represents the requested sending authorization policies.

func (GetIdentityPoliciesOutput) GoString added in v0.6.6

func (s GetIdentityPoliciesOutput) GoString() string

GoString returns the string representation

func (GetIdentityPoliciesOutput) String added in v0.6.6

func (s GetIdentityPoliciesOutput) String() string

String returns the string representation

type GetIdentityVerificationAttributesInput

type GetIdentityVerificationAttributesInput struct {

	// A list of identities.
	Identities []*string `type:"list" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to return the Amazon SES verification status of a list of identities. For domain identities, this request also returns the verification token. For information about verifying identities with Amazon SES, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html).

func (GetIdentityVerificationAttributesInput) GoString added in v0.6.5

GoString returns the string representation

func (GetIdentityVerificationAttributesInput) String added in v0.6.5

String returns the string representation

func (*GetIdentityVerificationAttributesInput) Validate added in v1.1.21

Validate inspects the fields of the type to determine if they are valid.

type GetIdentityVerificationAttributesOutput

type GetIdentityVerificationAttributesOutput struct {

	// A map of Identities to IdentityVerificationAttributes objects.
	VerificationAttributes map[string]*IdentityVerificationAttributes `type:"map" required:"true"`
	// contains filtered or unexported fields
}

The Amazon SES verification status of a list of identities. For domain identities, this response also contains the verification token.

func (GetIdentityVerificationAttributesOutput) GoString added in v0.6.5

GoString returns the string representation

func (GetIdentityVerificationAttributesOutput) String added in v0.6.5

String returns the string representation

type GetSendQuotaInput

type GetSendQuotaInput struct {
	// contains filtered or unexported fields
}

func (GetSendQuotaInput) GoString added in v0.6.5

func (s GetSendQuotaInput) GoString() string

GoString returns the string representation

func (GetSendQuotaInput) String added in v0.6.5

func (s GetSendQuotaInput) String() string

String returns the string representation

type GetSendQuotaOutput

type GetSendQuotaOutput struct {

	// The maximum number of emails the user is allowed to send in a 24-hour interval.
	// A value of -1 signifies an unlimited quota.
	Max24HourSend *float64 `type:"double"`

	// The maximum number of emails that Amazon SES can accept from the user's account
	// per second.
	//
	//  The rate at which Amazon SES accepts the user's messages might be less
	// than the maximum send rate.
	MaxSendRate *float64 `type:"double"`

	// The number of emails sent during the previous 24 hours.
	SentLast24Hours *float64 `type:"double"`
	// contains filtered or unexported fields
}

Represents your Amazon SES daily sending quota, maximum send rate, and the number of emails you have sent in the last 24 hours.

func (GetSendQuotaOutput) GoString added in v0.6.5

func (s GetSendQuotaOutput) GoString() string

GoString returns the string representation

func (GetSendQuotaOutput) String added in v0.6.5

func (s GetSendQuotaOutput) String() string

String returns the string representation

type GetSendStatisticsInput

type GetSendStatisticsInput struct {
	// contains filtered or unexported fields
}

func (GetSendStatisticsInput) GoString added in v0.6.5

func (s GetSendStatisticsInput) GoString() string

GoString returns the string representation

func (GetSendStatisticsInput) String added in v0.6.5

func (s GetSendStatisticsInput) String() string

String returns the string representation

type GetSendStatisticsOutput

type GetSendStatisticsOutput struct {

	// A list of data points, each of which represents 15 minutes of activity.
	SendDataPoints []*SendDataPoint `type:"list"`
	// contains filtered or unexported fields
}

Represents a list of data points. This list contains aggregated data from the previous two weeks of your sending activity with Amazon SES.

func (GetSendStatisticsOutput) GoString added in v0.6.5

func (s GetSendStatisticsOutput) GoString() string

GoString returns the string representation

func (GetSendStatisticsOutput) String added in v0.6.5

func (s GetSendStatisticsOutput) String() string

String returns the string representation

type IdentityDkimAttributes added in v0.9.5

type IdentityDkimAttributes struct {

	// True if DKIM signing is enabled for email sent from the identity; false otherwise.
	DkimEnabled *bool `type:"boolean" required:"true"`

	// A set of character strings that represent the 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. (This only applies to domain identities,
	// not email address identities.)
	//
	// For more information about creating DNS records using DKIM tokens, go to
	// the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html).
	DkimTokens []*string `type:"list"`

	// Describes whether Amazon SES has successfully verified the DKIM DNS records
	// (tokens) published in the domain name's DNS. (This only applies to domain
	// identities, not email address identities.)
	DkimVerificationStatus *string `type:"string" required:"true" enum:"VerificationStatus"`
	// contains filtered or unexported fields
}

Represents the DKIM attributes of a verified email address or a domain.

func (IdentityDkimAttributes) GoString added in v0.9.5

func (s IdentityDkimAttributes) GoString() string

GoString returns the string representation

func (IdentityDkimAttributes) String added in v0.9.5

func (s IdentityDkimAttributes) String() string

String returns the string representation

type IdentityMailFromDomainAttributes added in v1.1.11

type IdentityMailFromDomainAttributes struct {

	// The action that Amazon SES takes if it cannot successfully read the required
	// MX record when you send an email. A value of UseDefaultValue indicates that
	// if Amazon SES cannot read the required MX record, it uses amazonses.com (or
	// a subdomain of that) as the MAIL FROM domain. A value of RejectMessage indicates
	// that if Amazon SES cannot read the required MX record, Amazon SES returns
	// a MailFromDomainNotVerified error and does not send the email.
	//
	// The custom MAIL FROM setup states that result in this behavior are Pending,
	// Failed, and TemporaryFailure.
	BehaviorOnMXFailure *string `type:"string" required:"true" enum:"BehaviorOnMXFailure"`

	// The custom MAIL FROM domain that the identity is configured to use.
	MailFromDomain *string `type:"string" required:"true"`

	// The state that indicates whether Amazon SES has successfully read the MX
	// record required for custom MAIL FROM domain setup. If the state is Success,
	// Amazon SES uses the specified custom MAIL FROM domain when the verified identity
	// sends an email. All other states indicate that Amazon SES takes the action
	// described by BehaviorOnMXFailure.
	MailFromDomainStatus *string `type:"string" required:"true" enum:"CustomMailFromStatus"`
	// contains filtered or unexported fields
}

Represents the custom MAIL FROM domain attributes of a verified identity (email address or domain).

func (IdentityMailFromDomainAttributes) GoString added in v1.1.11

GoString returns the string representation

func (IdentityMailFromDomainAttributes) String added in v1.1.11

String returns the string representation

type IdentityNotificationAttributes

type IdentityNotificationAttributes struct {

	// The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will
	// publish bounce notifications.
	BounceTopic *string `type:"string" required:"true"`

	// The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will
	// publish complaint notifications.
	ComplaintTopic *string `type:"string" required:"true"`

	// The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will
	// publish delivery notifications.
	DeliveryTopic *string `type:"string" required:"true"`

	// Describes whether Amazon SES will forward bounce and complaint notifications
	// as email. true indicates that Amazon SES will forward bounce and complaint
	// notifications as email, while false indicates that bounce and complaint notifications
	// will be published only to the specified bounce and complaint Amazon SNS topics.
	ForwardingEnabled *bool `type:"boolean" required:"true"`

	// Describes whether Amazon SES includes the original email headers in Amazon
	// SNS notifications of type Bounce. A value of true specifies that Amazon SES
	// will include headers in bounce notifications, and a value of false specifies
	// that Amazon SES will not include headers in bounce notifications.
	HeadersInBounceNotificationsEnabled *bool `type:"boolean"`

	// Describes whether Amazon SES includes the original email headers in Amazon
	// SNS notifications of type Complaint. A value of true specifies that Amazon
	// SES will include headers in complaint notifications, and a value of false
	// specifies that Amazon SES will not include headers in complaint notifications.
	HeadersInComplaintNotificationsEnabled *bool `type:"boolean"`

	// Describes whether Amazon SES includes the original email headers in Amazon
	// SNS notifications of type Delivery. A value of true specifies that Amazon
	// SES will include headers in delivery notifications, and a value of false
	// specifies that Amazon SES will not include headers in delivery notifications.
	HeadersInDeliveryNotificationsEnabled *bool `type:"boolean"`
	// contains filtered or unexported fields
}

Represents the notification attributes of an identity, including whether an identity has Amazon Simple Notification Service (Amazon SNS) topics set for bounce, complaint, and/or delivery notifications, and whether feedback forwarding is enabled for bounce and complaint notifications.

func (IdentityNotificationAttributes) GoString added in v0.6.5

GoString returns the string representation

func (IdentityNotificationAttributes) String added in v0.6.5

String returns the string representation

type IdentityVerificationAttributes

type IdentityVerificationAttributes struct {

	// The verification status of the identity: "Pending", "Success", "Failed",
	// or "TemporaryFailure".
	VerificationStatus *string `type:"string" required:"true" enum:"VerificationStatus"`

	// The verification token for a domain identity. Null for email address identities.
	VerificationToken *string `type:"string"`
	// contains filtered or unexported fields
}

Represents the verification attributes of a single identity.

func (IdentityVerificationAttributes) GoString added in v0.6.5

GoString returns the string representation

func (IdentityVerificationAttributes) String added in v0.6.5

String returns the string representation

type LambdaAction added in v0.9.10

type LambdaAction struct {

	// The Amazon Resource Name (ARN) of the AWS Lambda function. An example of
	// an AWS Lambda function ARN is arn:aws:lambda:us-west-2:account-id:function:MyFunction.
	// For more information about AWS Lambda, see the AWS Lambda Developer Guide
	// (http://docs.aws.amazon.com/lambda/latest/dg/welcome.html).
	FunctionArn *string `type:"string" required:"true"`

	// The invocation type of the AWS Lambda function. An invocation type of RequestResponse
	// means that the execution of the function will immediately result in a response,
	// and a value of Event means that the function will be invoked asynchronously.
	// The default value is Event. For information about AWS Lambda invocation types,
	// see the AWS Lambda Developer Guide (http://docs.aws.amazon.com/lambda/latest/dg/API_Invoke.html).
	//
	//  There is a 30-second timeout on RequestResponse invocations. You should
	// use Event invocation in most cases. Use RequestResponse only when you want
	// to make a mail flow decision, such as whether to stop the receipt rule or
	// the receipt rule set.
	InvocationType *string `type:"string" enum:"InvocationType"`

	// The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the
	// Lambda action is taken. An example of an Amazon SNS topic ARN is arn:aws:sns:us-west-2:123456789012:MyTopic.
	// For more information about Amazon SNS topics, see the Amazon SNS Developer
	// Guide (http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html).
	TopicArn *string `type:"string"`
	// contains filtered or unexported fields
}

When included in a receipt rule, this action calls an AWS Lambda function and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS).

To enable Amazon SES to call your AWS Lambda function or to publish to an Amazon SNS topic of another account, Amazon SES must have permission to access those resources. For information about giving permissions, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html).

For information about using AWS Lambda actions in receipt rules, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-lambda.html).

func (LambdaAction) GoString added in v0.9.10

func (s LambdaAction) GoString() string

GoString returns the string representation

func (LambdaAction) String added in v0.9.10

func (s LambdaAction) String() string

String returns the string representation

func (*LambdaAction) Validate added in v1.1.21

func (s *LambdaAction) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListIdentitiesInput

type ListIdentitiesInput struct {

	// The type of the identities to list. Possible values are "EmailAddress" and
	// "Domain". If this parameter is omitted, then all identities will be listed.
	IdentityType *string `type:"string" enum:"IdentityType"`

	// The maximum number of identities per page. Possible values are 1-1000 inclusive.
	MaxItems *int64 `type:"integer"`

	// The token to use for pagination.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

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.

func (ListIdentitiesInput) GoString added in v0.6.5

func (s ListIdentitiesInput) GoString() string

GoString returns the string representation

func (ListIdentitiesInput) String added in v0.6.5

func (s ListIdentitiesInput) String() string

String returns the string representation

type ListIdentitiesOutput

type ListIdentitiesOutput struct {

	// A list of identities.
	Identities []*string `type:"list" required:"true"`

	// The token used for pagination.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

A list of all identities that you have attempted to verify under your AWS account, regardless of verification status.

func (ListIdentitiesOutput) GoString added in v0.6.5

func (s ListIdentitiesOutput) GoString() string

GoString returns the string representation

func (ListIdentitiesOutput) String added in v0.6.5

func (s ListIdentitiesOutput) String() string

String returns the string representation

type ListIdentityPoliciesInput added in v0.6.6

type ListIdentityPoliciesInput struct {

	// 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: user@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.
	//
	// To successfully call this API, you must own the identity.
	Identity *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to return a list of sending authorization policies that are attached to an identity. Sending authorization is an Amazon SES feature that enables you to authorize other senders to use your identities. For information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).

func (ListIdentityPoliciesInput) GoString added in v0.6.6

func (s ListIdentityPoliciesInput) GoString() string

GoString returns the string representation

func (ListIdentityPoliciesInput) String added in v0.6.6

func (s ListIdentityPoliciesInput) String() string

String returns the string representation

func (*ListIdentityPoliciesInput) Validate added in v1.1.21

func (s *ListIdentityPoliciesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListIdentityPoliciesOutput added in v0.6.6

type ListIdentityPoliciesOutput struct {

	// A list of names of policies that apply to the specified identity.
	PolicyNames []*string `type:"list" required:"true"`
	// contains filtered or unexported fields
}

A list of names of sending authorization policies that apply to an identity.

func (ListIdentityPoliciesOutput) GoString added in v0.6.6

func (s ListIdentityPoliciesOutput) GoString() string

GoString returns the string representation

func (ListIdentityPoliciesOutput) String added in v0.6.6

String returns the string representation

type ListReceiptFiltersInput added in v0.9.10

type ListReceiptFiltersInput struct {
	// contains filtered or unexported fields
}

: Represents a request to list the IP address filters that exist under your AWS account. You use IP address filters when you receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (ListReceiptFiltersInput) GoString added in v0.9.10

func (s ListReceiptFiltersInput) GoString() string

GoString returns the string representation

func (ListReceiptFiltersInput) String added in v0.9.10

func (s ListReceiptFiltersInput) String() string

String returns the string representation

type ListReceiptFiltersOutput added in v0.9.10

type ListReceiptFiltersOutput struct {

	// A list of IP address filter data structures, which each consist of a name,
	// an IP address range, and whether to allow or block mail from it.
	Filters []*ReceiptFilter `type:"list"`
	// contains filtered or unexported fields
}

A list of IP address filters that exist under your AWS account.

func (ListReceiptFiltersOutput) GoString added in v0.9.10

func (s ListReceiptFiltersOutput) GoString() string

GoString returns the string representation

func (ListReceiptFiltersOutput) String added in v0.9.10

func (s ListReceiptFiltersOutput) String() string

String returns the string representation

type ListReceiptRuleSetsInput added in v0.9.10

type ListReceiptRuleSetsInput struct {

	// A token returned from a previous call to ListReceiptRuleSets to indicate
	// the position in the receipt rule set list.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

Represents a request to list the receipt rule sets that exist under your AWS account. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (ListReceiptRuleSetsInput) GoString added in v0.9.10

func (s ListReceiptRuleSetsInput) GoString() string

GoString returns the string representation

func (ListReceiptRuleSetsInput) String added in v0.9.10

func (s ListReceiptRuleSetsInput) String() string

String returns the string representation

type ListReceiptRuleSetsOutput added in v0.9.10

type ListReceiptRuleSetsOutput struct {

	// A token indicating that there are additional receipt rule sets available
	// to be listed. Pass this token to successive calls of ListReceiptRuleSets
	// to retrieve up to 100 receipt rule sets at a time.
	NextToken *string `type:"string"`

	// The metadata for the currently active receipt rule set. The metadata consists
	// of the rule set name and the timestamp of when the rule set was created.
	RuleSets []*ReceiptRuleSetMetadata `type:"list"`
	// contains filtered or unexported fields
}

A list of receipt rule sets that exist under your AWS account.

func (ListReceiptRuleSetsOutput) GoString added in v0.9.10

func (s ListReceiptRuleSetsOutput) GoString() string

GoString returns the string representation

func (ListReceiptRuleSetsOutput) String added in v0.9.10

func (s ListReceiptRuleSetsOutput) String() string

String returns the string representation

type ListVerifiedEmailAddressesInput

type ListVerifiedEmailAddressesInput struct {
	// contains filtered or unexported fields
}

func (ListVerifiedEmailAddressesInput) GoString added in v0.6.5

GoString returns the string representation

func (ListVerifiedEmailAddressesInput) String added in v0.6.5

String returns the string representation

type ListVerifiedEmailAddressesOutput

type ListVerifiedEmailAddressesOutput struct {

	// A list of email addresses that have been verified.
	VerifiedEmailAddresses []*string `type:"list"`
	// contains filtered or unexported fields
}

A list of email addresses that you have verified with Amazon SES under your AWS account.

func (ListVerifiedEmailAddressesOutput) GoString added in v0.6.5

GoString returns the string representation

func (ListVerifiedEmailAddressesOutput) String added in v0.6.5

String returns the string representation

type Message

type Message struct {

	// The message body.
	Body *Body `type:"structure" required:"true"`

	// The subject of the message: A short summary of the content, which will appear
	// in the recipient's inbox.
	Subject *Content `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

Represents the message to be sent, composed of a subject and a body.

func (Message) GoString added in v0.6.5

func (s Message) GoString() string

GoString returns the string representation

func (Message) String added in v0.6.5

func (s Message) String() string

String returns the string representation

func (*Message) Validate added in v1.1.21

func (s *Message) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type MessageDsn added in v0.9.10

type MessageDsn struct {

	// When the message was received by the reporting mail transfer agent (MTA),
	// in RFC 822 (https://www.ietf.org/rfc/rfc0822.txt) date-time format.
	ArrivalDate *time.Time `type:"timestamp" timestampFormat:"iso8601"`

	// Additional X-headers to include in the DSN.
	ExtensionFields []*ExtensionField `type:"list"`

	// The reporting MTA that attempted to deliver the message, formatted as specified
	// in RFC 3464 (https://tools.ietf.org/html/rfc3464) (mta-name-type; mta-name).
	// The default value is dns; inbound-smtp.[region].amazonaws.com.
	ReportingMta *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Message-related information to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces.

For information about receiving email through Amazon SES, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html).

func (MessageDsn) GoString added in v0.9.10

func (s MessageDsn) GoString() string

GoString returns the string representation

func (MessageDsn) String added in v0.9.10

func (s MessageDsn) String() string

String returns the string representation

func (*MessageDsn) Validate added in v1.1.21

func (s *MessageDsn) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutIdentityPolicyInput added in v0.6.6

type PutIdentityPolicyInput struct {

	// The identity to which the policy will apply. You can specify an identity
	// by using its name or by using its Amazon Resource Name (ARN). Examples: user@example.com,
	// example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.
	//
	// To successfully call this API, you must own the identity.
	Identity *string `type:"string" required:"true"`

	// 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 (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-policies.html).
	Policy *string `min:"1" type:"string" required:"true"`

	// The name of the policy.
	//
	// The policy name cannot exceed 64 characters and can only include alphanumeric
	// characters, dashes, and underscores.
	PolicyName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to add or update a sending authorization policy for an identity. Sending authorization is an Amazon SES feature that enables you to authorize other senders to use your identities. For information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).

func (PutIdentityPolicyInput) GoString added in v0.6.6

func (s PutIdentityPolicyInput) GoString() string

GoString returns the string representation

func (PutIdentityPolicyInput) String added in v0.6.6

func (s PutIdentityPolicyInput) String() string

String returns the string representation

func (*PutIdentityPolicyInput) Validate added in v1.1.21

func (s *PutIdentityPolicyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutIdentityPolicyOutput added in v0.6.6

type PutIdentityPolicyOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (PutIdentityPolicyOutput) GoString added in v0.6.6

func (s PutIdentityPolicyOutput) GoString() string

GoString returns the string representation

func (PutIdentityPolicyOutput) String added in v0.6.6

func (s PutIdentityPolicyOutput) String() string

String returns the string representation

type RawMessage

type RawMessage struct {

	// The raw data of the message. The client must ensure that the message format
	// complies with Internet email standards regarding email header fields, MIME
	// types, MIME encoding, and base64 encoding.
	//
	// The To:, CC:, and BCC: headers in the raw message can contain a group list.
	//
	// If you are using SendRawEmail with sending authorization, you can include
	// X-headers in the raw message to specify the "Source," "From," and "Return-Path"
	// addresses. For more information, see the documentation for SendRawEmail.
	//
	//  Do not include these X-headers in the DKIM signature, because they are
	// removed by Amazon SES before sending the email.
	//
	//  For more information, go to the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html).
	//
	// Data is automatically base64 encoded/decoded by the SDK.
	Data []byte `type:"blob" required:"true"`
	// contains filtered or unexported fields
}

Represents the raw data of the message.

func (RawMessage) GoString added in v0.6.5

func (s RawMessage) GoString() string

GoString returns the string representation

func (RawMessage) String added in v0.6.5

func (s RawMessage) String() string

String returns the string representation

func (*RawMessage) Validate added in v1.1.21

func (s *RawMessage) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReceiptAction added in v0.9.10

type ReceiptAction struct {

	// Adds a header to the received email.
	AddHeaderAction *AddHeaderAction `type:"structure"`

	// Rejects the received email by returning a bounce response to the sender and,
	// optionally, publishes a notification to Amazon Simple Notification Service
	// (Amazon SNS).
	BounceAction *BounceAction `type:"structure"`

	// Calls an AWS Lambda function, and optionally, publishes a notification to
	// Amazon SNS.
	LambdaAction *LambdaAction `type:"structure"`

	// Saves the received message to an Amazon Simple Storage Service (Amazon S3)
	// bucket and, optionally, publishes a notification to Amazon SNS.
	S3Action *S3Action `type:"structure"`

	// Publishes the email content within a notification to Amazon SNS.
	SNSAction *SNSAction `type:"structure"`

	// Terminates the evaluation of the receipt rule set and optionally publishes
	// a notification to Amazon SNS.
	StopAction *StopAction `type:"structure"`

	// Calls Amazon WorkMail and, optionally, publishes a notification to Amazon
	// SNS.
	WorkmailAction *WorkmailAction `type:"structure"`
	// contains filtered or unexported fields
}

An action that Amazon SES can take when it receives an email on behalf of one or more email addresses or domains that you own. An instance of this data type can represent only one action.

For information about setting up receipt rules, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html).

func (ReceiptAction) GoString added in v0.9.10

func (s ReceiptAction) GoString() string

GoString returns the string representation

func (ReceiptAction) String added in v0.9.10

func (s ReceiptAction) String() string

String returns the string representation

func (*ReceiptAction) Validate added in v1.1.21

func (s *ReceiptAction) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReceiptFilter added in v0.9.10

type ReceiptFilter struct {

	// A structure that provides the IP addresses to block or allow, and whether
	// to block or allow incoming mail from them.
	IpFilter *ReceiptIpFilter `type:"structure" required:"true"`

	// The name of the IP address filter. The name must:
	//
	//   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores
	// (_), or dashes (-).
	//
	//   Start and end with a letter or number.
	//
	//   Contain less than 64 characters.
	Name *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

A receipt IP address filter enables you to specify whether to accept or reject mail originating from an IP address or range of IP addresses.

For information about setting up IP address filters, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html).

func (ReceiptFilter) GoString added in v0.9.10

func (s ReceiptFilter) GoString() string

GoString returns the string representation

func (ReceiptFilter) String added in v0.9.10

func (s ReceiptFilter) String() string

String returns the string representation

func (*ReceiptFilter) Validate added in v1.1.21

func (s *ReceiptFilter) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReceiptIpFilter added in v0.9.10

type ReceiptIpFilter struct {

	// A single IP address or a range of IP addresses that you want to block or
	// allow, specified in Classless Inter-Domain Routing (CIDR) notation. An example
	// of a single email address is 10.0.0.1. An example of a range of IP addresses
	// is 10.0.0.1/24. For more information about CIDR notation, see RFC 2317 (https://tools.ietf.org/html/rfc2317).
	Cidr *string `type:"string" required:"true"`

	// Indicates whether to block or allow incoming mail from the specified IP addresses.
	Policy *string `type:"string" required:"true" enum:"ReceiptFilterPolicy"`
	// contains filtered or unexported fields
}

A receipt IP address filter enables you to specify whether to accept or reject mail originating from an IP address or range of IP addresses.

For information about setting up IP address filters, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html).

func (ReceiptIpFilter) GoString added in v0.9.10

func (s ReceiptIpFilter) GoString() string

GoString returns the string representation

func (ReceiptIpFilter) String added in v0.9.10

func (s ReceiptIpFilter) String() string

String returns the string representation

func (*ReceiptIpFilter) Validate added in v1.1.21

func (s *ReceiptIpFilter) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReceiptRule added in v0.9.10

type ReceiptRule struct {

	// An ordered list of actions to perform on messages that match at least one
	// of the recipient email addresses or domains specified in the receipt rule.
	Actions []*ReceiptAction `type:"list"`

	// If true, the receipt rule is active. The default value is false.
	Enabled *bool `type:"boolean"`

	// The name of the receipt rule. The name must:
	//
	//   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores
	// (_), or dashes (-).
	//
	//   Start and end with a letter or number.
	//
	//   Contain less than 64 characters.
	Name *string `type:"string" required:"true"`

	// The recipient domains and email addresses to which the receipt rule applies.
	// If this field is not specified, this rule will match all recipients under
	// all verified domains.
	Recipients []*string `type:"list"`

	// If true, then messages to which this receipt rule applies are scanned for
	// spam and viruses. The default value is false.
	ScanEnabled *bool `type:"boolean"`

	// Specifies whether Amazon SES should require that incoming email is delivered
	// over a connection encrypted with Transport Layer Security (TLS). If this
	// parameter is set to Require, Amazon SES will bounce emails that are not received
	// over TLS. The default is Optional.
	TlsPolicy *string `type:"string" enum:"TlsPolicy"`
	// contains filtered or unexported fields
}

Receipt rules enable you to specify which actions Amazon SES should take when it receives mail on behalf of one or more email addresses or domains that you own.

Each receipt rule defines a set of email addresses or domains to which it applies. If the email addresses or domains match at least one recipient address of the message, Amazon SES executes all of the receipt rule's actions on the message.

For information about setting up receipt rules, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html).

func (ReceiptRule) GoString added in v0.9.10

func (s ReceiptRule) GoString() string

GoString returns the string representation

func (ReceiptRule) String added in v0.9.10

func (s ReceiptRule) String() string

String returns the string representation

func (*ReceiptRule) Validate added in v1.1.21

func (s *ReceiptRule) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReceiptRuleSetMetadata added in v0.9.10

type ReceiptRuleSetMetadata struct {

	// The date and time the receipt rule set was created.
	CreatedTimestamp *time.Time `type:"timestamp" timestampFormat:"iso8601"`

	// The name of the receipt rule set. The name must:
	//
	//   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores
	// (_), or dashes (-).
	//
	//   Start and end with a letter or number.
	//
	//   Contain less than 64 characters.
	Name *string `type:"string"`
	// contains filtered or unexported fields
}

Information about a receipt rule set.

A receipt rule set is a collection of rules that specify what Amazon SES should do with mail it receives on behalf of your account's verified domains.

For information about setting up receipt rule sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html).

func (ReceiptRuleSetMetadata) GoString added in v0.9.10

func (s ReceiptRuleSetMetadata) GoString() string

GoString returns the string representation

func (ReceiptRuleSetMetadata) String added in v0.9.10

func (s ReceiptRuleSetMetadata) String() string

String returns the string representation

type RecipientDsnFields added in v0.9.10

type RecipientDsnFields struct {

	// The action performed by the reporting mail transfer agent (MTA) as a result
	// of its attempt to deliver the message to the recipient address. This is required
	// by RFC 3464 (https://tools.ietf.org/html/rfc3464).
	Action *string `type:"string" required:"true" enum:"DsnAction"`

	// An extended explanation of what went wrong; this is usually an SMTP response.
	// See RFC 3463 (https://tools.ietf.org/html/rfc3463) for the correct formatting
	// of this parameter.
	DiagnosticCode *string `type:"string"`

	// Additional X-headers to include in the DSN.
	ExtensionFields []*ExtensionField `type:"list"`

	// The email address to which the message was ultimately delivered. This corresponds
	// to the Final-Recipient in the DSN. If not specified, FinalRecipient will
	// be set to the Recipient specified in the BouncedRecipientInfo structure.
	// Either FinalRecipient or the recipient in BouncedRecipientInfo must be a
	// recipient of the original bounced message.
	//
	//  Do not prepend the FinalRecipient email address with rfc 822;, as described
	// in RFC 3798 (https://tools.ietf.org/html/rfc3798).
	FinalRecipient *string `type:"string"`

	// The time the final delivery attempt was made, in RFC 822 (https://www.ietf.org/rfc/rfc0822.txt)
	// date-time format.
	LastAttemptDate *time.Time `type:"timestamp" timestampFormat:"iso8601"`

	// The MTA to which the remote MTA attempted to deliver the message, formatted
	// as specified in RFC 3464 (https://tools.ietf.org/html/rfc3464) (mta-name-type;
	// mta-name). This parameter typically applies only to propagating synchronous
	// bounces.
	RemoteMta *string `type:"string"`

	// The status code that indicates what went wrong. This is required by RFC 3464
	// (https://tools.ietf.org/html/rfc3464).
	Status *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Recipient-related information to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces.

For information about receiving email through Amazon SES, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html).

func (RecipientDsnFields) GoString added in v0.9.10

func (s RecipientDsnFields) GoString() string

GoString returns the string representation

func (RecipientDsnFields) String added in v0.9.10

func (s RecipientDsnFields) String() string

String returns the string representation

func (*RecipientDsnFields) Validate added in v1.1.21

func (s *RecipientDsnFields) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReorderReceiptRuleSetInput added in v0.9.10

type ReorderReceiptRuleSetInput struct {

	// A list of the specified receipt rule set's receipt rules in the order that
	// you want to put them.
	RuleNames []*string `type:"list" required:"true"`

	// The name of the receipt rule set to reorder.
	RuleSetName *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to reorder the receipt rules within a receipt rule set. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (ReorderReceiptRuleSetInput) GoString added in v0.9.10

func (s ReorderReceiptRuleSetInput) GoString() string

GoString returns the string representation

func (ReorderReceiptRuleSetInput) String added in v0.9.10

String returns the string representation

func (*ReorderReceiptRuleSetInput) Validate added in v1.1.21

func (s *ReorderReceiptRuleSetInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReorderReceiptRuleSetOutput added in v0.9.10

type ReorderReceiptRuleSetOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (ReorderReceiptRuleSetOutput) GoString added in v0.9.10

func (s ReorderReceiptRuleSetOutput) GoString() string

GoString returns the string representation

func (ReorderReceiptRuleSetOutput) String added in v0.9.10

String returns the string representation

type S3Action added in v0.9.10

type S3Action struct {

	// The name of the Amazon S3 bucket to which to save the received email.
	BucketName *string `type:"string" required:"true"`

	// The customer master key that Amazon SES should use to encrypt your emails
	// before saving them to the Amazon S3 bucket. You can use the default master
	// key or a custom master key you created in AWS KMS as follows:
	//
	//   To use the default master key, provide an ARN in the form of arn:aws:kms:REGION:ACCOUNT-ID-WITHOUT-HYPHENS:alias/aws/ses.
	// For example, if your AWS account ID is 123456789012 and you want to use the
	// default master key in the US West (Oregon) region, the ARN of the default
	// master key would be arn:aws:kms:us-west-2:123456789012:alias/aws/ses. If
	// you use the default master key, you don't need to perform any extra steps
	// to give Amazon SES permission to use the key.
	//
	//   To use a custom master key you created in AWS KMS, provide the ARN of
	// the master key and ensure that you add a statement to your key's policy to
	// give Amazon SES permission to use it. For more information about giving permissions,
	// see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html).
	//
	//   For more information about key policies, see the AWS KMS Developer Guide
	// (http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html). If
	// you do not specify a master key, Amazon SES will not encrypt your emails.
	//
	//  Your mail is encrypted by Amazon SES using the Amazon S3 encryption client
	// before the mail is submitted to Amazon S3 for storage. It is not encrypted
	// using Amazon S3 server-side encryption. This means that you must use the
	// Amazon S3 encryption client to decrypt the email after retrieving it from
	// Amazon S3, as the service has no access to use your AWS KMS keys for decryption.
	// This encryption client is currently available with the AWS Java SDK (http://aws.amazon.com/sdk-for-java/)
	// and AWS Ruby SDK (http://aws.amazon.com/sdk-for-ruby/) only. For more information
	// about client-side encryption using AWS KMS master keys, see the Amazon S3
	// Developer Guide (http://alpha-docs-aws.amazon.com/AmazonS3/latest/dev/UsingClientSideEncryption.html).
	KmsKeyArn *string `type:"string"`

	// The key prefix of the Amazon S3 bucket. The key prefix is similar to a directory
	// name that enables you to store similar data under the same directory in a
	// bucket.
	ObjectKeyPrefix *string `type:"string"`

	// The ARN of the Amazon SNS topic to notify when the message is saved to the
	// Amazon S3 bucket. An example of an Amazon SNS topic ARN is arn:aws:sns:us-west-2:123456789012:MyTopic.
	// For more information about Amazon SNS topics, see the Amazon SNS Developer
	// Guide (http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html).
	TopicArn *string `type:"string"`
	// contains filtered or unexported fields
}

When included in a receipt rule, this action saves the received message to an Amazon Simple Storage Service (Amazon S3) bucket and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS).

To enable Amazon SES to write emails to your Amazon S3 bucket, use an AWS KMS key to encrypt your emails, or publish to an Amazon SNS topic of another account, Amazon SES must have permission to access those resources. For information about giving permissions, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html).

When you save your emails to an Amazon S3 bucket, the maximum email size

(including headers) is 30 MB. Emails larger than that will bounce.

For information about specifying Amazon S3 actions in receipt rules, see

the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-s3.html).

func (S3Action) GoString added in v0.9.10

func (s S3Action) GoString() string

GoString returns the string representation

func (S3Action) String added in v0.9.10

func (s S3Action) String() string

String returns the string representation

func (*S3Action) Validate added in v1.1.21

func (s *S3Action) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SES

type SES struct {
	*client.Client
}

This is the API Reference for Amazon Simple Email Service (Amazon SES). This documentation is intended to be used in conjunction with the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html).

For a list of Amazon SES endpoints to use in service requests, see Regions

and Amazon SES (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html) in the Amazon SES Developer Guide. The service client's operations are safe to be used concurrently. It is not safe to mutate any of the client's properties though.

func New

func New(p client.ConfigProvider, cfgs ...*aws.Config) *SES

New creates a new instance of the SES client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.

Example:

// Create a SES client from just a session.
svc := ses.New(mySession)

// Create a SES client with additional configuration
svc := ses.New(mySession, aws.NewConfig().WithRegion("us-west-2"))

func (*SES) CloneReceiptRuleSet added in v0.9.10

func (c *SES) CloneReceiptRuleSet(input *CloneReceiptRuleSetInput) (*CloneReceiptRuleSetOutput, error)

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 (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.CloneReceiptRuleSetInput{
		OriginalRuleSetName: aws.String("ReceiptRuleSetName"), // Required
		RuleSetName:         aws.String("ReceiptRuleSetName"), // Required
	}
	resp, err := svc.CloneReceiptRuleSet(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) CloneReceiptRuleSetRequest added in v0.9.10

func (c *SES) CloneReceiptRuleSetRequest(input *CloneReceiptRuleSetInput) (req *request.Request, output *CloneReceiptRuleSetOutput)

CloneReceiptRuleSetRequest generates a "aws/request.Request" representing the client's request for the CloneReceiptRuleSet operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CloneReceiptRuleSet method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CloneReceiptRuleSetRequest method.
req, resp := client.CloneReceiptRuleSetRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) CreateReceiptFilter added in v0.9.10

func (c *SES) CreateReceiptFilter(input *CreateReceiptFilterInput) (*CreateReceiptFilterOutput, error)

Creates a new IP address filter.

For information about setting up IP address filters, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.CreateReceiptFilterInput{
		Filter: &ses.ReceiptFilter{ // Required
			IpFilter: &ses.ReceiptIpFilter{ // Required
				Cidr:   aws.String("Cidr"),                // Required
				Policy: aws.String("ReceiptFilterPolicy"), // Required
			},
			Name: aws.String("ReceiptFilterName"), // Required
		},
	}
	resp, err := svc.CreateReceiptFilter(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) CreateReceiptFilterRequest added in v0.9.10

func (c *SES) CreateReceiptFilterRequest(input *CreateReceiptFilterInput) (req *request.Request, output *CreateReceiptFilterOutput)

CreateReceiptFilterRequest generates a "aws/request.Request" representing the client's request for the CreateReceiptFilter operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateReceiptFilter method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateReceiptFilterRequest method.
req, resp := client.CreateReceiptFilterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) CreateReceiptRule added in v0.9.10

func (c *SES) CreateReceiptRule(input *CreateReceiptRuleInput) (*CreateReceiptRuleOutput, error)

Creates a receipt rule.

For information about setting up receipt rules, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.CreateReceiptRuleInput{
		Rule: &ses.ReceiptRule{ // Required
			Name: aws.String("ReceiptRuleName"), // Required
			Actions: []*ses.ReceiptAction{
				{ // Required
					AddHeaderAction: &ses.AddHeaderAction{
						HeaderName:  aws.String("HeaderName"),  // Required
						HeaderValue: aws.String("HeaderValue"), // Required
					},
					BounceAction: &ses.BounceAction{
						Message:       aws.String("BounceMessage"),       // Required
						Sender:        aws.String("Address"),             // Required
						SmtpReplyCode: aws.String("BounceSmtpReplyCode"), // Required
						StatusCode:    aws.String("BounceStatusCode"),
						TopicArn:      aws.String("AmazonResourceName"),
					},
					LambdaAction: &ses.LambdaAction{
						FunctionArn:    aws.String("AmazonResourceName"), // Required
						InvocationType: aws.String("InvocationType"),
						TopicArn:       aws.String("AmazonResourceName"),
					},
					S3Action: &ses.S3Action{
						BucketName:      aws.String("S3BucketName"), // Required
						KmsKeyArn:       aws.String("AmazonResourceName"),
						ObjectKeyPrefix: aws.String("S3KeyPrefix"),
						TopicArn:        aws.String("AmazonResourceName"),
					},
					SNSAction: &ses.SNSAction{
						TopicArn: aws.String("AmazonResourceName"), // Required
						Encoding: aws.String("SNSActionEncoding"),
					},
					StopAction: &ses.StopAction{
						Scope:    aws.String("StopScope"), // Required
						TopicArn: aws.String("AmazonResourceName"),
					},
					WorkmailAction: &ses.WorkmailAction{
						OrganizationArn: aws.String("AmazonResourceName"), // Required
						TopicArn:        aws.String("AmazonResourceName"),
					},
				},
				// More values...
			},
			Enabled: aws.Bool(true),
			Recipients: []*string{
				aws.String("Recipient"), // Required
				// More values...
			},
			ScanEnabled: aws.Bool(true),
			TlsPolicy:   aws.String("TlsPolicy"),
		},
		RuleSetName: aws.String("ReceiptRuleSetName"), // Required
		After:       aws.String("ReceiptRuleName"),
	}
	resp, err := svc.CreateReceiptRule(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) CreateReceiptRuleRequest added in v0.9.10

func (c *SES) CreateReceiptRuleRequest(input *CreateReceiptRuleInput) (req *request.Request, output *CreateReceiptRuleOutput)

CreateReceiptRuleRequest generates a "aws/request.Request" representing the client's request for the CreateReceiptRule operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateReceiptRule method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateReceiptRuleRequest method.
req, resp := client.CreateReceiptRuleRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) CreateReceiptRuleSet added in v0.9.10

func (c *SES) CreateReceiptRuleSet(input *CreateReceiptRuleSetInput) (*CreateReceiptRuleSetOutput, error)

Creates an empty receipt rule set.

For information about setting up receipt rule sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.CreateReceiptRuleSetInput{
		RuleSetName: aws.String("ReceiptRuleSetName"), // Required
	}
	resp, err := svc.CreateReceiptRuleSet(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) CreateReceiptRuleSetRequest added in v0.9.10

func (c *SES) CreateReceiptRuleSetRequest(input *CreateReceiptRuleSetInput) (req *request.Request, output *CreateReceiptRuleSetOutput)

CreateReceiptRuleSetRequest generates a "aws/request.Request" representing the client's request for the CreateReceiptRuleSet operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateReceiptRuleSet method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateReceiptRuleSetRequest method.
req, resp := client.CreateReceiptRuleSetRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) DeleteIdentity

func (c *SES) DeleteIdentity(input *DeleteIdentityInput) (*DeleteIdentityOutput, error)

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

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.DeleteIdentityInput{
		Identity: aws.String("Identity"), // Required
	}
	resp, err := svc.DeleteIdentity(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) DeleteIdentityPolicy added in v0.6.6

func (c *SES) DeleteIdentityPolicy(input *DeleteIdentityPolicyInput) (*DeleteIdentityPolicyOutput, error)

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.

This API is for the identity owner only. If you have not verified the identity,

this API will return an error.

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

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.DeleteIdentityPolicyInput{
		Identity:   aws.String("Identity"),   // Required
		PolicyName: aws.String("PolicyName"), // Required
	}
	resp, err := svc.DeleteIdentityPolicy(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) DeleteIdentityPolicyRequest added in v0.6.6

func (c *SES) DeleteIdentityPolicyRequest(input *DeleteIdentityPolicyInput) (req *request.Request, output *DeleteIdentityPolicyOutput)

DeleteIdentityPolicyRequest generates a "aws/request.Request" representing the client's request for the DeleteIdentityPolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteIdentityPolicy method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteIdentityPolicyRequest method.
req, resp := client.DeleteIdentityPolicyRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) DeleteIdentityRequest

func (c *SES) DeleteIdentityRequest(input *DeleteIdentityInput) (req *request.Request, output *DeleteIdentityOutput)

DeleteIdentityRequest generates a "aws/request.Request" representing the client's request for the DeleteIdentity operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteIdentity method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteIdentityRequest method.
req, resp := client.DeleteIdentityRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) DeleteReceiptFilter added in v0.9.10

func (c *SES) DeleteReceiptFilter(input *DeleteReceiptFilterInput) (*DeleteReceiptFilterOutput, error)

Deletes the specified IP address filter.

For information about managing IP address filters, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-ip-filters.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.DeleteReceiptFilterInput{
		FilterName: aws.String("ReceiptFilterName"), // Required
	}
	resp, err := svc.DeleteReceiptFilter(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) DeleteReceiptFilterRequest added in v0.9.10

func (c *SES) DeleteReceiptFilterRequest(input *DeleteReceiptFilterInput) (req *request.Request, output *DeleteReceiptFilterOutput)

DeleteReceiptFilterRequest generates a "aws/request.Request" representing the client's request for the DeleteReceiptFilter operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteReceiptFilter method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteReceiptFilterRequest method.
req, resp := client.DeleteReceiptFilterRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) DeleteReceiptRule added in v0.9.10

func (c *SES) DeleteReceiptRule(input *DeleteReceiptRuleInput) (*DeleteReceiptRuleOutput, error)

Deletes the specified receipt rule.

For information about managing receipt rules, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.DeleteReceiptRuleInput{
		RuleName:    aws.String("ReceiptRuleName"),    // Required
		RuleSetName: aws.String("ReceiptRuleSetName"), // Required
	}
	resp, err := svc.DeleteReceiptRule(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) DeleteReceiptRuleRequest added in v0.9.10

func (c *SES) DeleteReceiptRuleRequest(input *DeleteReceiptRuleInput) (req *request.Request, output *DeleteReceiptRuleOutput)

DeleteReceiptRuleRequest generates a "aws/request.Request" representing the client's request for the DeleteReceiptRule operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteReceiptRule method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteReceiptRuleRequest method.
req, resp := client.DeleteReceiptRuleRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) DeleteReceiptRuleSet added in v0.9.10

func (c *SES) DeleteReceiptRuleSet(input *DeleteReceiptRuleSetInput) (*DeleteReceiptRuleSetOutput, error)

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

The currently active rule set cannot be deleted.

For information about managing receipt rule sets, see the Amazon SES Developer

Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.DeleteReceiptRuleSetInput{
		RuleSetName: aws.String("ReceiptRuleSetName"), // Required
	}
	resp, err := svc.DeleteReceiptRuleSet(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) DeleteReceiptRuleSetRequest added in v0.9.10

func (c *SES) DeleteReceiptRuleSetRequest(input *DeleteReceiptRuleSetInput) (req *request.Request, output *DeleteReceiptRuleSetOutput)

DeleteReceiptRuleSetRequest generates a "aws/request.Request" representing the client's request for the DeleteReceiptRuleSet operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteReceiptRuleSet method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteReceiptRuleSetRequest method.
req, resp := client.DeleteReceiptRuleSetRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) DeleteVerifiedEmailAddress

func (c *SES) DeleteVerifiedEmailAddress(input *DeleteVerifiedEmailAddressInput) (*DeleteVerifiedEmailAddressOutput, error)

Deletes the specified email address from the list of verified addresses.

The DeleteVerifiedEmailAddress action is deprecated as of the May 15, 2012

release of Domain Verification. The DeleteIdentity action is now preferred.

This action is throttled at one request per second.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.DeleteVerifiedEmailAddressInput{
		EmailAddress: aws.String("Address"), // Required
	}
	resp, err := svc.DeleteVerifiedEmailAddress(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) DeleteVerifiedEmailAddressRequest

func (c *SES) DeleteVerifiedEmailAddressRequest(input *DeleteVerifiedEmailAddressInput) (req *request.Request, output *DeleteVerifiedEmailAddressOutput)

DeleteVerifiedEmailAddressRequest generates a "aws/request.Request" representing the client's request for the DeleteVerifiedEmailAddress operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteVerifiedEmailAddress method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteVerifiedEmailAddressRequest method.
req, resp := client.DeleteVerifiedEmailAddressRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) DescribeActiveReceiptRuleSet added in v0.9.10

func (c *SES) DescribeActiveReceiptRuleSet(input *DescribeActiveReceiptRuleSetInput) (*DescribeActiveReceiptRuleSetOutput, error)

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 (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	var params *ses.DescribeActiveReceiptRuleSetInput
	resp, err := svc.DescribeActiveReceiptRuleSet(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) DescribeActiveReceiptRuleSetRequest added in v0.9.10

func (c *SES) DescribeActiveReceiptRuleSetRequest(input *DescribeActiveReceiptRuleSetInput) (req *request.Request, output *DescribeActiveReceiptRuleSetOutput)

DescribeActiveReceiptRuleSetRequest generates a "aws/request.Request" representing the client's request for the DescribeActiveReceiptRuleSet operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeActiveReceiptRuleSet method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeActiveReceiptRuleSetRequest method.
req, resp := client.DescribeActiveReceiptRuleSetRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) DescribeReceiptRule added in v0.9.10

func (c *SES) DescribeReceiptRule(input *DescribeReceiptRuleInput) (*DescribeReceiptRuleOutput, error)

Returns the details of the specified receipt rule.

For information about setting up receipt rules, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.DescribeReceiptRuleInput{
		RuleName:    aws.String("ReceiptRuleName"),    // Required
		RuleSetName: aws.String("ReceiptRuleSetName"), // Required
	}
	resp, err := svc.DescribeReceiptRule(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) DescribeReceiptRuleRequest added in v0.9.10

func (c *SES) DescribeReceiptRuleRequest(input *DescribeReceiptRuleInput) (req *request.Request, output *DescribeReceiptRuleOutput)

DescribeReceiptRuleRequest generates a "aws/request.Request" representing the client's request for the DescribeReceiptRule operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeReceiptRule method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeReceiptRuleRequest method.
req, resp := client.DescribeReceiptRuleRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) DescribeReceiptRuleSet added in v0.9.10

func (c *SES) DescribeReceiptRuleSet(input *DescribeReceiptRuleSetInput) (*DescribeReceiptRuleSetOutput, error)

Returns the details of the specified receipt rule set.

For information about managing receipt rule sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.DescribeReceiptRuleSetInput{
		RuleSetName: aws.String("ReceiptRuleSetName"), // Required
	}
	resp, err := svc.DescribeReceiptRuleSet(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) DescribeReceiptRuleSetRequest added in v0.9.10

func (c *SES) DescribeReceiptRuleSetRequest(input *DescribeReceiptRuleSetInput) (req *request.Request, output *DescribeReceiptRuleSetOutput)

DescribeReceiptRuleSetRequest generates a "aws/request.Request" representing the client's request for the DescribeReceiptRuleSet operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeReceiptRuleSet method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeReceiptRuleSetRequest method.
req, resp := client.DescribeReceiptRuleSetRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) GetIdentityDkimAttributes added in v0.9.5

func (c *SES) GetIdentityDkimAttributes(input *GetIdentityDkimAttributesInput) (*GetIdentityDkimAttributesOutput, error)

Returns the current status of Easy DKIM signing for an entity. For domain name identities, this action 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 action 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 action 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 (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html).

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.GetIdentityDkimAttributesInput{
		Identities: []*string{ // Required
			aws.String("Identity"), // Required
			// More values...
		},
	}
	resp, err := svc.GetIdentityDkimAttributes(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) GetIdentityDkimAttributesRequest added in v0.9.5

func (c *SES) GetIdentityDkimAttributesRequest(input *GetIdentityDkimAttributesInput) (req *request.Request, output *GetIdentityDkimAttributesOutput)

GetIdentityDkimAttributesRequest generates a "aws/request.Request" representing the client's request for the GetIdentityDkimAttributes operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetIdentityDkimAttributes method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetIdentityDkimAttributesRequest method.
req, resp := client.GetIdentityDkimAttributesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) GetIdentityMailFromDomainAttributes added in v1.1.11

func (c *SES) GetIdentityMailFromDomainAttributes(input *GetIdentityMailFromDomainAttributesInput) (*GetIdentityMailFromDomainAttributesOutput, error)

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

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

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.GetIdentityMailFromDomainAttributesInput{
		Identities: []*string{ // Required
			aws.String("Identity"), // Required
			// More values...
		},
	}
	resp, err := svc.GetIdentityMailFromDomainAttributes(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) GetIdentityMailFromDomainAttributesRequest added in v1.1.11

func (c *SES) GetIdentityMailFromDomainAttributesRequest(input *GetIdentityMailFromDomainAttributesInput) (req *request.Request, output *GetIdentityMailFromDomainAttributesOutput)

GetIdentityMailFromDomainAttributesRequest generates a "aws/request.Request" representing the client's request for the GetIdentityMailFromDomainAttributes operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetIdentityMailFromDomainAttributes method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetIdentityMailFromDomainAttributesRequest method.
req, resp := client.GetIdentityMailFromDomainAttributesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) GetIdentityNotificationAttributes

func (c *SES) GetIdentityNotificationAttributes(input *GetIdentityNotificationAttributesInput) (*GetIdentityNotificationAttributesOutput, error)

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

This action 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 (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html).

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.GetIdentityNotificationAttributesInput{
		Identities: []*string{ // Required
			aws.String("Identity"), // Required
			// More values...
		},
	}
	resp, err := svc.GetIdentityNotificationAttributes(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) GetIdentityNotificationAttributesRequest

func (c *SES) GetIdentityNotificationAttributesRequest(input *GetIdentityNotificationAttributesInput) (req *request.Request, output *GetIdentityNotificationAttributesOutput)

GetIdentityNotificationAttributesRequest generates a "aws/request.Request" representing the client's request for the GetIdentityNotificationAttributes operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetIdentityNotificationAttributes method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetIdentityNotificationAttributesRequest method.
req, resp := client.GetIdentityNotificationAttributesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) GetIdentityPolicies added in v0.6.6

func (c *SES) GetIdentityPolicies(input *GetIdentityPoliciesInput) (*GetIdentityPoliciesOutput, error)

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.

This API is for the identity owner only. If you have not verified the identity,

this API will return an error.

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

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.GetIdentityPoliciesInput{
		Identity: aws.String("Identity"), // Required
		PolicyNames: []*string{ // Required
			aws.String("PolicyName"), // Required
			// More values...
		},
	}
	resp, err := svc.GetIdentityPolicies(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) GetIdentityPoliciesRequest added in v0.6.6

func (c *SES) GetIdentityPoliciesRequest(input *GetIdentityPoliciesInput) (req *request.Request, output *GetIdentityPoliciesOutput)

GetIdentityPoliciesRequest generates a "aws/request.Request" representing the client's request for the GetIdentityPolicies operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetIdentityPolicies method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetIdentityPoliciesRequest method.
req, resp := client.GetIdentityPoliciesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) GetIdentityVerificationAttributes

func (c *SES) GetIdentityVerificationAttributes(input *GetIdentityVerificationAttributesInput) (*GetIdentityVerificationAttributesOutput, error)

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

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

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.GetIdentityVerificationAttributesInput{
		Identities: []*string{ // Required
			aws.String("Identity"), // Required
			// More values...
		},
	}
	resp, err := svc.GetIdentityVerificationAttributes(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) GetIdentityVerificationAttributesRequest

func (c *SES) GetIdentityVerificationAttributesRequest(input *GetIdentityVerificationAttributesInput) (req *request.Request, output *GetIdentityVerificationAttributesOutput)

GetIdentityVerificationAttributesRequest generates a "aws/request.Request" representing the client's request for the GetIdentityVerificationAttributes operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetIdentityVerificationAttributes method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetIdentityVerificationAttributesRequest method.
req, resp := client.GetIdentityVerificationAttributesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) GetSendQuota

func (c *SES) GetSendQuota(input *GetSendQuotaInput) (*GetSendQuotaOutput, error)

Returns the user's current sending limits.

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	var params *ses.GetSendQuotaInput
	resp, err := svc.GetSendQuota(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) GetSendQuotaRequest

func (c *SES) GetSendQuotaRequest(input *GetSendQuotaInput) (req *request.Request, output *GetSendQuotaOutput)

GetSendQuotaRequest generates a "aws/request.Request" representing the client's request for the GetSendQuota operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetSendQuota method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetSendQuotaRequest method.
req, resp := client.GetSendQuotaRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) GetSendStatistics

func (c *SES) GetSendStatistics(input *GetSendStatisticsInput) (*GetSendStatisticsOutput, error)

Returns the user's sending statistics. 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 interval.

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	var params *ses.GetSendStatisticsInput
	resp, err := svc.GetSendStatistics(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) GetSendStatisticsRequest

func (c *SES) GetSendStatisticsRequest(input *GetSendStatisticsInput) (req *request.Request, output *GetSendStatisticsOutput)

GetSendStatisticsRequest generates a "aws/request.Request" representing the client's request for the GetSendStatistics operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetSendStatistics method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetSendStatisticsRequest method.
req, resp := client.GetSendStatisticsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) ListIdentities

func (c *SES) ListIdentities(input *ListIdentitiesInput) (*ListIdentitiesOutput, error)

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

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.ListIdentitiesInput{
		IdentityType: aws.String("IdentityType"),
		MaxItems:     aws.Int64(1),
		NextToken:    aws.String("NextToken"),
	}
	resp, err := svc.ListIdentities(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) ListIdentitiesPages

func (c *SES) ListIdentitiesPages(input *ListIdentitiesInput, fn func(p *ListIdentitiesOutput, lastPage bool) (shouldContinue bool)) error

ListIdentitiesPages iterates over the pages of a ListIdentities operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListIdentities method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListIdentities operation.
pageNum := 0
err := client.ListIdentitiesPages(params,
    func(page *ListIdentitiesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*SES) ListIdentitiesRequest

func (c *SES) ListIdentitiesRequest(input *ListIdentitiesInput) (req *request.Request, output *ListIdentitiesOutput)

ListIdentitiesRequest generates a "aws/request.Request" representing the client's request for the ListIdentities operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListIdentities method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListIdentitiesRequest method.
req, resp := client.ListIdentitiesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) ListIdentityPolicies added in v0.6.6

func (c *SES) ListIdentityPolicies(input *ListIdentityPoliciesInput) (*ListIdentityPoliciesOutput, error)

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.

This API is for the identity owner only. If you have not verified the identity,

this API will return an error.

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

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.ListIdentityPoliciesInput{
		Identity: aws.String("Identity"), // Required
	}
	resp, err := svc.ListIdentityPolicies(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) ListIdentityPoliciesRequest added in v0.6.6

func (c *SES) ListIdentityPoliciesRequest(input *ListIdentityPoliciesInput) (req *request.Request, output *ListIdentityPoliciesOutput)

ListIdentityPoliciesRequest generates a "aws/request.Request" representing the client's request for the ListIdentityPolicies operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListIdentityPolicies method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListIdentityPoliciesRequest method.
req, resp := client.ListIdentityPoliciesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) ListReceiptFilters added in v0.9.10

func (c *SES) ListReceiptFilters(input *ListReceiptFiltersInput) (*ListReceiptFiltersOutput, error)

Lists the IP address filters associated with your AWS account.

For information about managing IP address filters, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-ip-filters.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	var params *ses.ListReceiptFiltersInput
	resp, err := svc.ListReceiptFilters(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) ListReceiptFiltersRequest added in v0.9.10

func (c *SES) ListReceiptFiltersRequest(input *ListReceiptFiltersInput) (req *request.Request, output *ListReceiptFiltersOutput)

ListReceiptFiltersRequest generates a "aws/request.Request" representing the client's request for the ListReceiptFilters operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListReceiptFilters method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListReceiptFiltersRequest method.
req, resp := client.ListReceiptFiltersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) ListReceiptRuleSets added in v0.9.10

func (c *SES) ListReceiptRuleSets(input *ListReceiptRuleSetsInput) (*ListReceiptRuleSetsOutput, error)

Lists the receipt rule sets that exist under your AWS account. 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 (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.ListReceiptRuleSetsInput{
		NextToken: aws.String("NextToken"),
	}
	resp, err := svc.ListReceiptRuleSets(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) ListReceiptRuleSetsRequest added in v0.9.10

func (c *SES) ListReceiptRuleSetsRequest(input *ListReceiptRuleSetsInput) (req *request.Request, output *ListReceiptRuleSetsOutput)

ListReceiptRuleSetsRequest generates a "aws/request.Request" representing the client's request for the ListReceiptRuleSets operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListReceiptRuleSets method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListReceiptRuleSetsRequest method.
req, resp := client.ListReceiptRuleSetsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) ListVerifiedEmailAddresses

func (c *SES) ListVerifiedEmailAddresses(input *ListVerifiedEmailAddressesInput) (*ListVerifiedEmailAddressesOutput, error)

Returns a list containing all of the email addresses that have been verified.

The ListVerifiedEmailAddresses action is deprecated as of the May 15, 2012

release of Domain Verification. The ListIdentities action is now preferred.

This action is throttled at one request per second.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	var params *ses.ListVerifiedEmailAddressesInput
	resp, err := svc.ListVerifiedEmailAddresses(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) ListVerifiedEmailAddressesRequest

func (c *SES) ListVerifiedEmailAddressesRequest(input *ListVerifiedEmailAddressesInput) (req *request.Request, output *ListVerifiedEmailAddressesOutput)

ListVerifiedEmailAddressesRequest generates a "aws/request.Request" representing the client's request for the ListVerifiedEmailAddresses operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListVerifiedEmailAddresses method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListVerifiedEmailAddressesRequest method.
req, resp := client.ListVerifiedEmailAddressesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) PutIdentityPolicy added in v0.6.6

func (c *SES) PutIdentityPolicy(input *PutIdentityPolicyInput) (*PutIdentityPolicyOutput, error)

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

This API is for the identity owner only. If you have not verified the identity,

this API will return an error.

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

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.PutIdentityPolicyInput{
		Identity:   aws.String("Identity"),   // Required
		Policy:     aws.String("Policy"),     // Required
		PolicyName: aws.String("PolicyName"), // Required
	}
	resp, err := svc.PutIdentityPolicy(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) PutIdentityPolicyRequest added in v0.6.6

func (c *SES) PutIdentityPolicyRequest(input *PutIdentityPolicyInput) (req *request.Request, output *PutIdentityPolicyOutput)

PutIdentityPolicyRequest generates a "aws/request.Request" representing the client's request for the PutIdentityPolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutIdentityPolicy method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the PutIdentityPolicyRequest method.
req, resp := client.PutIdentityPolicyRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) ReorderReceiptRuleSet added in v0.9.10

func (c *SES) ReorderReceiptRuleSet(input *ReorderReceiptRuleSetInput) (*ReorderReceiptRuleSetOutput, error)

Reorders the receipt rules within a receipt rule set.

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.

For information about managing receipt rule sets, see the Amazon SES Developer

Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.ReorderReceiptRuleSetInput{
		RuleNames: []*string{ // Required
			aws.String("ReceiptRuleName"), // Required
			// More values...
		},
		RuleSetName: aws.String("ReceiptRuleSetName"), // Required
	}
	resp, err := svc.ReorderReceiptRuleSet(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) ReorderReceiptRuleSetRequest added in v0.9.10

func (c *SES) ReorderReceiptRuleSetRequest(input *ReorderReceiptRuleSetInput) (req *request.Request, output *ReorderReceiptRuleSetOutput)

ReorderReceiptRuleSetRequest generates a "aws/request.Request" representing the client's request for the ReorderReceiptRuleSet operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ReorderReceiptRuleSet method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ReorderReceiptRuleSetRequest method.
req, resp := client.ReorderReceiptRuleSetRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) SendBounce added in v0.9.10

func (c *SES) SendBounce(input *SendBounceInput) (*SendBounceOutput, error)

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.

You cannot use this API to send generic bounces for mail that was not received

by Amazon SES.

For information about receiving email through Amazon SES, see the Amazon

SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"
	"time"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.SendBounceInput{
		BounceSender: aws.String("Address"), // Required
		BouncedRecipientInfoList: []*ses.BouncedRecipientInfo{ // Required
			{ // Required
				Recipient:    aws.String("Address"), // Required
				BounceType:   aws.String("BounceType"),
				RecipientArn: aws.String("AmazonResourceName"),
				RecipientDsnFields: &ses.RecipientDsnFields{
					Action:         aws.String("DsnAction"), // Required
					Status:         aws.String("DsnStatus"), // Required
					DiagnosticCode: aws.String("DiagnosticCode"),
					ExtensionFields: []*ses.ExtensionField{
						{ // Required
							Name:  aws.String("ExtensionFieldName"),  // Required
							Value: aws.String("ExtensionFieldValue"), // Required
						},
						// More values...
					},
					FinalRecipient:  aws.String("Address"),
					LastAttemptDate: aws.Time(time.Now()),
					RemoteMta:       aws.String("RemoteMta"),
				},
			},
			// More values...
		},
		OriginalMessageId: aws.String("MessageId"), // Required
		BounceSenderArn:   aws.String("AmazonResourceName"),
		Explanation:       aws.String("Explanation"),
		MessageDsn: &ses.MessageDsn{
			ReportingMta: aws.String("ReportingMta"), // Required
			ArrivalDate:  aws.Time(time.Now()),
			ExtensionFields: []*ses.ExtensionField{
				{ // Required
					Name:  aws.String("ExtensionFieldName"),  // Required
					Value: aws.String("ExtensionFieldValue"), // Required
				},
				// More values...
			},
		},
	}
	resp, err := svc.SendBounce(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) SendBounceRequest added in v0.9.10

func (c *SES) SendBounceRequest(input *SendBounceInput) (req *request.Request, output *SendBounceOutput)

SendBounceRequest generates a "aws/request.Request" representing the client's request for the SendBounce operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SendBounce method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SendBounceRequest method.
req, resp := client.SendBounceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) SendEmail

func (c *SES) SendEmail(input *SendEmailInput) (*SendEmailOutput, error)

Composes an email message based on input data, and then immediately queues the message for sending.

There are several important points to know about SendEmail:

You can only send email from verified email addresses and domains; otherwise,

you will get an "Email address not verified" error. If your account is still in the Amazon SES sandbox, you must also verify every recipient email address except for the recipients provided by the Amazon SES mailbox simulator. For more information, go to the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html).

The total size of the message cannot exceed 10 MB. This includes any attachments

that are part of the message.

Amazon SES has a limit on the total number of recipients per message.

The combined number of To:, CC: and BCC: email addresses cannot exceed 50. 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 Amazon SES repeatedly to send the message to each group.

For every message that you send, the total number of recipients (To:,

CC: and BCC:) is counted against your sending quota - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html).

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.SendEmailInput{
		Destination: &ses.Destination{ // Required
			BccAddresses: []*string{
				aws.String("Address"), // Required
				// More values...
			},
			CcAddresses: []*string{
				aws.String("Address"), // Required
				// More values...
			},
			ToAddresses: []*string{
				aws.String("Address"), // Required
				// More values...
			},
		},
		Message: &ses.Message{ // Required
			Body: &ses.Body{ // Required
				Html: &ses.Content{
					Data:    aws.String("MessageData"), // Required
					Charset: aws.String("Charset"),
				},
				Text: &ses.Content{
					Data:    aws.String("MessageData"), // Required
					Charset: aws.String("Charset"),
				},
			},
			Subject: &ses.Content{ // Required
				Data:    aws.String("MessageData"), // Required
				Charset: aws.String("Charset"),
			},
		},
		Source: aws.String("Address"), // Required
		ReplyToAddresses: []*string{
			aws.String("Address"), // Required
			// More values...
		},
		ReturnPath:    aws.String("Address"),
		ReturnPathArn: aws.String("AmazonResourceName"),
		SourceArn:     aws.String("AmazonResourceName"),
	}
	resp, err := svc.SendEmail(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) SendEmailRequest

func (c *SES) SendEmailRequest(input *SendEmailInput) (req *request.Request, output *SendEmailOutput)

SendEmailRequest generates a "aws/request.Request" representing the client's request for the SendEmail operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SendEmail method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SendEmailRequest method.
req, resp := client.SendEmailRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) SendRawEmail

func (c *SES) SendRawEmail(input *SendRawEmailInput) (*SendRawEmailOutput, error)

Sends an email message, with header and content specified by the client. The SendRawEmail action is useful for sending multipart MIME emails. The raw text of the message must comply with Internet email standards; otherwise, the message cannot be sent.

There are several important points to know about SendRawEmail:

You can only send email from verified email addresses and domains; otherwise,

you will get an "Email address not verified" error. If your account is still in the Amazon SES sandbox, you must also verify every recipient email address except for the recipients provided by the Amazon SES mailbox simulator. For more information, go to the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html).

The total size of the message cannot exceed 10 MB. This includes any attachments

that are part of the message.

Amazon SES has a limit on the total number of recipients per message.

The combined number of To:, CC: and BCC: email addresses cannot exceed 50. 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 Amazon SES repeatedly to send the message to each group.

The To:, CC:, and BCC: headers in the raw message can contain a group

list. Note that each recipient in a group list counts towards the 50-recipient limit.

Amazon SES overrides any Message-ID and Date headers you provide.

For every message that you send, the total number of recipients (To:,

CC: and BCC:) is counted against your sending quota - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html).

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, because they are

removed by Amazon SES before sending the email.

For the most common sending authorization use case, we recommend that you

specify the SourceIdentityArn and do not specify either the FromIdentityArn or ReturnPathIdentityArn. (The same note applies to the corresponding X-headers.) If you only specify the SourceIdentityArn, Amazon SES will simply set the "From" address and the "Return Path" address to the identity specified in SourceIdentityArn. For more information about sending authorization, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.SendRawEmailInput{
		RawMessage: &ses.RawMessage{ // Required
			Data: []byte("PAYLOAD"), // Required
		},
		Destinations: []*string{
			aws.String("Address"), // Required
			// More values...
		},
		FromArn:       aws.String("AmazonResourceName"),
		ReturnPathArn: aws.String("AmazonResourceName"),
		Source:        aws.String("Address"),
		SourceArn:     aws.String("AmazonResourceName"),
	}
	resp, err := svc.SendRawEmail(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) SendRawEmailRequest

func (c *SES) SendRawEmailRequest(input *SendRawEmailInput) (req *request.Request, output *SendRawEmailOutput)

SendRawEmailRequest generates a "aws/request.Request" representing the client's request for the SendRawEmail operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SendRawEmail method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SendRawEmailRequest method.
req, resp := client.SendRawEmailRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) SetActiveReceiptRuleSet added in v0.9.10

func (c *SES) SetActiveReceiptRuleSet(input *SetActiveReceiptRuleSetInput) (*SetActiveReceiptRuleSetOutput, error)

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

To disable your email-receiving through Amazon SES completely, you can

call this API with RuleSetName set to null.

For information about managing receipt rule sets, see the Amazon SES Developer

Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.SetActiveReceiptRuleSetInput{
		RuleSetName: aws.String("ReceiptRuleSetName"),
	}
	resp, err := svc.SetActiveReceiptRuleSet(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) SetActiveReceiptRuleSetRequest added in v0.9.10

func (c *SES) SetActiveReceiptRuleSetRequest(input *SetActiveReceiptRuleSetInput) (req *request.Request, output *SetActiveReceiptRuleSetOutput)

SetActiveReceiptRuleSetRequest generates a "aws/request.Request" representing the client's request for the SetActiveReceiptRuleSet operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SetActiveReceiptRuleSet method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SetActiveReceiptRuleSetRequest method.
req, resp := client.SetActiveReceiptRuleSetRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) SetIdentityDkimEnabled added in v0.9.5

func (c *SES) SetIdentityDkimEnabled(input *SetIdentityDkimEnabledInput) (*SetIdentityDkimEnabledOutput, error)

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

If Easy DKIM signing is enabled for a domain name identity (e.g., example.com),

then Amazon SES will DKIM-sign all email sent by addresses under that domain name (e.g., user@example.com).

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 (e.g., user@example.com), you can only enable Easy

DKIM signing if the corresponding domain (e.g., example.com) has been set up for Easy DKIM using the AWS Console or the VerifyDomainDkim action.

This action is throttled at one request per second.

For more information about Easy DKIM signing, go to the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html).

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.SetIdentityDkimEnabledInput{
		DkimEnabled: aws.Bool(true),         // Required
		Identity:    aws.String("Identity"), // Required
	}
	resp, err := svc.SetIdentityDkimEnabled(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) SetIdentityDkimEnabledRequest added in v0.9.5

func (c *SES) SetIdentityDkimEnabledRequest(input *SetIdentityDkimEnabledInput) (req *request.Request, output *SetIdentityDkimEnabledOutput)

SetIdentityDkimEnabledRequest generates a "aws/request.Request" representing the client's request for the SetIdentityDkimEnabled operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SetIdentityDkimEnabled method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SetIdentityDkimEnabledRequest method.
req, resp := client.SetIdentityDkimEnabledRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) SetIdentityFeedbackForwardingEnabled

func (c *SES) SetIdentityFeedbackForwardingEnabled(input *SetIdentityFeedbackForwardingEnabledInput) (*SetIdentityFeedbackForwardingEnabledOutput, error)

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.

Feedback forwarding does not apply to delivery notifications. Delivery

notifications are only available through Amazon SNS.

This action is throttled at one request per second.

For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html).

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.SetIdentityFeedbackForwardingEnabledInput{
		ForwardingEnabled: aws.Bool(true),         // Required
		Identity:          aws.String("Identity"), // Required
	}
	resp, err := svc.SetIdentityFeedbackForwardingEnabled(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) SetIdentityFeedbackForwardingEnabledRequest

func (c *SES) SetIdentityFeedbackForwardingEnabledRequest(input *SetIdentityFeedbackForwardingEnabledInput) (req *request.Request, output *SetIdentityFeedbackForwardingEnabledOutput)

SetIdentityFeedbackForwardingEnabledRequest generates a "aws/request.Request" representing the client's request for the SetIdentityFeedbackForwardingEnabled operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SetIdentityFeedbackForwardingEnabled method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SetIdentityFeedbackForwardingEnabledRequest method.
req, resp := client.SetIdentityFeedbackForwardingEnabledRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) SetIdentityHeadersInNotificationsEnabled added in v1.1.35

func (c *SES) SetIdentityHeadersInNotificationsEnabled(input *SetIdentityHeadersInNotificationsEnabledInput) (*SetIdentityHeadersInNotificationsEnabledOutput, error)

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.

This action is throttled at one request per second.

For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html).

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.SetIdentityHeadersInNotificationsEnabledInput{
		Enabled:          aws.Bool(true),                 // Required
		Identity:         aws.String("Identity"),         // Required
		NotificationType: aws.String("NotificationType"), // Required
	}
	resp, err := svc.SetIdentityHeadersInNotificationsEnabled(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) SetIdentityHeadersInNotificationsEnabledRequest added in v1.1.35

func (c *SES) SetIdentityHeadersInNotificationsEnabledRequest(input *SetIdentityHeadersInNotificationsEnabledInput) (req *request.Request, output *SetIdentityHeadersInNotificationsEnabledOutput)

SetIdentityHeadersInNotificationsEnabledRequest generates a "aws/request.Request" representing the client's request for the SetIdentityHeadersInNotificationsEnabled operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SetIdentityHeadersInNotificationsEnabled method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SetIdentityHeadersInNotificationsEnabledRequest method.
req, resp := client.SetIdentityHeadersInNotificationsEnabledRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) SetIdentityMailFromDomain added in v1.1.11

func (c *SES) SetIdentityMailFromDomain(input *SetIdentityMailFromDomainInput) (*SetIdentityMailFromDomainOutput, error)

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 (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from-set.html).

This action is throttled at one request per second.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.SetIdentityMailFromDomainInput{
		Identity:            aws.String("Identity"), // Required
		BehaviorOnMXFailure: aws.String("BehaviorOnMXFailure"),
		MailFromDomain:      aws.String("MailFromDomainName"),
	}
	resp, err := svc.SetIdentityMailFromDomain(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) SetIdentityMailFromDomainRequest added in v1.1.11

func (c *SES) SetIdentityMailFromDomainRequest(input *SetIdentityMailFromDomainInput) (req *request.Request, output *SetIdentityMailFromDomainOutput)

SetIdentityMailFromDomainRequest generates a "aws/request.Request" representing the client's request for the SetIdentityMailFromDomain operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SetIdentityMailFromDomain method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SetIdentityMailFromDomainRequest method.
req, resp := client.SetIdentityMailFromDomainRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) SetIdentityNotificationTopic

func (c *SES) SetIdentityNotificationTopic(input *SetIdentityNotificationTopicInput) (*SetIdentityNotificationTopicOutput, error)

Given an identity (an email address or a domain), sets the Amazon Simple Notification Service (Amazon SNS) topic to which Amazon SES will publish bounce, complaint, and/or delivery notifications for emails sent with that identity as the Source.

Unless feedback forwarding is enabled, you must specify Amazon SNS topics

for bounce and complaint notifications. For more information, see SetIdentityFeedbackForwardingEnabled.

This action is throttled at one request per second.

For more information about feedback notification, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html).

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.SetIdentityNotificationTopicInput{
		Identity:         aws.String("Identity"),         // Required
		NotificationType: aws.String("NotificationType"), // Required
		SnsTopic:         aws.String("NotificationTopic"),
	}
	resp, err := svc.SetIdentityNotificationTopic(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) SetIdentityNotificationTopicRequest

func (c *SES) SetIdentityNotificationTopicRequest(input *SetIdentityNotificationTopicInput) (req *request.Request, output *SetIdentityNotificationTopicOutput)

SetIdentityNotificationTopicRequest generates a "aws/request.Request" representing the client's request for the SetIdentityNotificationTopic operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SetIdentityNotificationTopic method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SetIdentityNotificationTopicRequest method.
req, resp := client.SetIdentityNotificationTopicRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) SetReceiptRulePosition added in v0.9.10

func (c *SES) SetReceiptRulePosition(input *SetReceiptRulePositionInput) (*SetReceiptRulePositionOutput, error)

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 (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.SetReceiptRulePositionInput{
		RuleName:    aws.String("ReceiptRuleName"),    // Required
		RuleSetName: aws.String("ReceiptRuleSetName"), // Required
		After:       aws.String("ReceiptRuleName"),
	}
	resp, err := svc.SetReceiptRulePosition(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) SetReceiptRulePositionRequest added in v0.9.10

func (c *SES) SetReceiptRulePositionRequest(input *SetReceiptRulePositionInput) (req *request.Request, output *SetReceiptRulePositionOutput)

SetReceiptRulePositionRequest generates a "aws/request.Request" representing the client's request for the SetReceiptRulePosition operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the SetReceiptRulePosition method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the SetReceiptRulePositionRequest method.
req, resp := client.SetReceiptRulePositionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) UpdateReceiptRule added in v0.9.10

func (c *SES) UpdateReceiptRule(input *UpdateReceiptRuleInput) (*UpdateReceiptRuleOutput, error)

Updates a receipt rule.

For information about managing receipt rules, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html).

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.UpdateReceiptRuleInput{
		Rule: &ses.ReceiptRule{ // Required
			Name: aws.String("ReceiptRuleName"), // Required
			Actions: []*ses.ReceiptAction{
				{ // Required
					AddHeaderAction: &ses.AddHeaderAction{
						HeaderName:  aws.String("HeaderName"),  // Required
						HeaderValue: aws.String("HeaderValue"), // Required
					},
					BounceAction: &ses.BounceAction{
						Message:       aws.String("BounceMessage"),       // Required
						Sender:        aws.String("Address"),             // Required
						SmtpReplyCode: aws.String("BounceSmtpReplyCode"), // Required
						StatusCode:    aws.String("BounceStatusCode"),
						TopicArn:      aws.String("AmazonResourceName"),
					},
					LambdaAction: &ses.LambdaAction{
						FunctionArn:    aws.String("AmazonResourceName"), // Required
						InvocationType: aws.String("InvocationType"),
						TopicArn:       aws.String("AmazonResourceName"),
					},
					S3Action: &ses.S3Action{
						BucketName:      aws.String("S3BucketName"), // Required
						KmsKeyArn:       aws.String("AmazonResourceName"),
						ObjectKeyPrefix: aws.String("S3KeyPrefix"),
						TopicArn:        aws.String("AmazonResourceName"),
					},
					SNSAction: &ses.SNSAction{
						TopicArn: aws.String("AmazonResourceName"), // Required
						Encoding: aws.String("SNSActionEncoding"),
					},
					StopAction: &ses.StopAction{
						Scope:    aws.String("StopScope"), // Required
						TopicArn: aws.String("AmazonResourceName"),
					},
					WorkmailAction: &ses.WorkmailAction{
						OrganizationArn: aws.String("AmazonResourceName"), // Required
						TopicArn:        aws.String("AmazonResourceName"),
					},
				},
				// More values...
			},
			Enabled: aws.Bool(true),
			Recipients: []*string{
				aws.String("Recipient"), // Required
				// More values...
			},
			ScanEnabled: aws.Bool(true),
			TlsPolicy:   aws.String("TlsPolicy"),
		},
		RuleSetName: aws.String("ReceiptRuleSetName"), // Required
	}
	resp, err := svc.UpdateReceiptRule(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) UpdateReceiptRuleRequest added in v0.9.10

func (c *SES) UpdateReceiptRuleRequest(input *UpdateReceiptRuleInput) (req *request.Request, output *UpdateReceiptRuleOutput)

UpdateReceiptRuleRequest generates a "aws/request.Request" representing the client's request for the UpdateReceiptRule operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UpdateReceiptRule method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the UpdateReceiptRuleRequest method.
req, resp := client.UpdateReceiptRuleRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) VerifyDomainDkim added in v0.9.5

func (c *SES) VerifyDomainDkim(input *VerifyDomainDkimInput) (*VerifyDomainDkimOutput, error)

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.

This action is throttled at one request per second.

To enable or disable Easy DKIM signing for a domain, use the SetIdentityDkimEnabled action.

For more information about creating DNS records using DKIM tokens, go to the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html).

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.VerifyDomainDkimInput{
		Domain: aws.String("Domain"), // Required
	}
	resp, err := svc.VerifyDomainDkim(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) VerifyDomainDkimRequest added in v0.9.5

func (c *SES) VerifyDomainDkimRequest(input *VerifyDomainDkimInput) (req *request.Request, output *VerifyDomainDkimOutput)

VerifyDomainDkimRequest generates a "aws/request.Request" representing the client's request for the VerifyDomainDkim operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the VerifyDomainDkim method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the VerifyDomainDkimRequest method.
req, resp := client.VerifyDomainDkimRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) VerifyDomainIdentity

func (c *SES) VerifyDomainIdentity(input *VerifyDomainIdentityInput) (*VerifyDomainIdentityOutput, error)

Verifies a domain.

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.VerifyDomainIdentityInput{
		Domain: aws.String("Domain"), // Required
	}
	resp, err := svc.VerifyDomainIdentity(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) VerifyDomainIdentityRequest

func (c *SES) VerifyDomainIdentityRequest(input *VerifyDomainIdentityInput) (req *request.Request, output *VerifyDomainIdentityOutput)

VerifyDomainIdentityRequest generates a "aws/request.Request" representing the client's request for the VerifyDomainIdentity operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the VerifyDomainIdentity method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the VerifyDomainIdentityRequest method.
req, resp := client.VerifyDomainIdentityRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) VerifyEmailAddress

func (c *SES) VerifyEmailAddress(input *VerifyEmailAddressInput) (*VerifyEmailAddressOutput, error)

Verifies an email address. This action causes a confirmation email message to be sent to the specified address.

The VerifyEmailAddress action is deprecated as of the May 15, 2012 release

of Domain Verification. The VerifyEmailIdentity action is now preferred.

This action is throttled at one request per second.
Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.VerifyEmailAddressInput{
		EmailAddress: aws.String("Address"), // Required
	}
	resp, err := svc.VerifyEmailAddress(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) VerifyEmailAddressRequest

func (c *SES) VerifyEmailAddressRequest(input *VerifyEmailAddressInput) (req *request.Request, output *VerifyEmailAddressOutput)

VerifyEmailAddressRequest generates a "aws/request.Request" representing the client's request for the VerifyEmailAddress operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the VerifyEmailAddress method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the VerifyEmailAddressRequest method.
req, resp := client.VerifyEmailAddressRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) VerifyEmailIdentity

func (c *SES) VerifyEmailIdentity(input *VerifyEmailIdentityInput) (*VerifyEmailIdentityOutput, error)

Verifies an email address. This action causes a confirmation email message to be sent to the specified address.

This action is throttled at one request per second.

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/ses"
)

func main() {
	sess, err := session.NewSession()
	if err != nil {
		fmt.Println("failed to create session,", err)
		return
	}

	svc := ses.New(sess)

	params := &ses.VerifyEmailIdentityInput{
		EmailAddress: aws.String("Address"), // Required
	}
	resp, err := svc.VerifyEmailIdentity(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*SES) VerifyEmailIdentityRequest

func (c *SES) VerifyEmailIdentityRequest(input *VerifyEmailIdentityInput) (req *request.Request, output *VerifyEmailIdentityOutput)

VerifyEmailIdentityRequest generates a "aws/request.Request" representing the client's request for the VerifyEmailIdentity operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the VerifyEmailIdentity method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the VerifyEmailIdentityRequest method.
req, resp := client.VerifyEmailIdentityRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

func (*SES) WaitUntilIdentityExists added in v0.10.3

func (c *SES) WaitUntilIdentityExists(input *GetIdentityVerificationAttributesInput) error

type SNSAction added in v0.9.10

type SNSAction struct {

	// The encoding to use for the email within the Amazon SNS notification. UTF-8
	// is easier to use, but may not preserve all special characters when a message
	// was encoded with a different encoding format. Base64 preserves all special
	// characters. The default value is UTF-8.
	Encoding *string `type:"string" enum:"SNSActionEncoding"`

	// The Amazon Resource Name (ARN) of the Amazon SNS topic to notify. An example
	// of an Amazon SNS topic ARN is arn:aws:sns:us-west-2:123456789012:MyTopic.
	// For more information about Amazon SNS topics, see the Amazon SNS Developer
	// Guide (http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html).
	TopicArn *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

When included in a receipt rule, this action publishes a notification to Amazon Simple Notification Service (Amazon SNS). This action includes a complete copy of the email content in the Amazon SNS notifications. Amazon SNS notifications for all other actions simply provide information about the email. They do not include the email content itself.

If you own the Amazon SNS topic, you don't need to do anything to give Amazon SES permission to publish emails to it. However, if you don't own the Amazon SNS topic, you need to attach a policy to the topic to give Amazon SES permissions to access it. For information about giving permissions, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html).

You can only publish emails that are 150 KB or less (including the header)

to Amazon SNS. Larger emails will bounce. If you anticipate emails larger than 150 KB, use the S3 action instead.

For information about using a receipt rule to publish an Amazon SNS notification,

see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-sns.html).

func (SNSAction) GoString added in v0.9.10

func (s SNSAction) GoString() string

GoString returns the string representation

func (SNSAction) String added in v0.9.10

func (s SNSAction) String() string

String returns the string representation

func (*SNSAction) Validate added in v1.1.21

func (s *SNSAction) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SendBounceInput added in v0.9.10

type SendBounceInput struct {

	// The address to use in the "From" header of the bounce message. This must
	// be an identity that you have verified with Amazon SES.
	BounceSender *string `type:"string" required:"true"`

	// 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 (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).
	BounceSenderArn *string `type:"string"`

	// 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.
	BouncedRecipientInfoList []*BouncedRecipientInfo `type:"list" required:"true"`

	// 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.
	Explanation *string `type:"string"`

	// Message-related DSN fields. If not specified, Amazon SES will choose the
	// values.
	MessageDsn *MessageDsn `type:"structure"`

	// The message ID of the message to be bounced.
	OriginalMessageId *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to send a bounce message to the sender of an email you received through Amazon SES.

func (SendBounceInput) GoString added in v0.9.10

func (s SendBounceInput) GoString() string

GoString returns the string representation

func (SendBounceInput) String added in v0.9.10

func (s SendBounceInput) String() string

String returns the string representation

func (*SendBounceInput) Validate added in v1.1.21

func (s *SendBounceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SendBounceOutput added in v0.9.10

type SendBounceOutput struct {

	// The message ID of the bounce message.
	MessageId *string `type:"string"`
	// contains filtered or unexported fields
}

Represents a unique message ID.

func (SendBounceOutput) GoString added in v0.9.10

func (s SendBounceOutput) GoString() string

GoString returns the string representation

func (SendBounceOutput) String added in v0.9.10

func (s SendBounceOutput) String() string

String returns the string representation

type SendDataPoint

type SendDataPoint struct {

	// Number of emails that have bounced.
	Bounces *int64 `type:"long"`

	// Number of unwanted emails that were rejected by recipients.
	Complaints *int64 `type:"long"`

	// Number of emails that have been enqueued for sending.
	DeliveryAttempts *int64 `type:"long"`

	// Number of emails rejected by Amazon SES.
	Rejects *int64 `type:"long"`

	// Time of the data point.
	Timestamp *time.Time `type:"timestamp" timestampFormat:"iso8601"`
	// contains filtered or unexported fields
}

Represents sending statistics data. Each SendDataPoint contains statistics for a 15-minute period of sending activity.

func (SendDataPoint) GoString added in v0.6.5

func (s SendDataPoint) GoString() string

GoString returns the string representation

func (SendDataPoint) String added in v0.6.5

func (s SendDataPoint) String() string

String returns the string representation

type SendEmailInput

type SendEmailInput struct {

	// The destination for this email, composed of To:, CC:, and BCC: fields.
	Destination *Destination `type:"structure" required:"true"`

	// The message to be sent.
	Message *Message `type:"structure" required:"true"`

	// The reply-to email address(es) for the message. If the recipient replies
	// to the message, each reply-to address will receive the reply.
	ReplyToAddresses []*string `type:"list"`

	// The email address to which bounces and complaints are to be forwarded 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.
	ReturnPath *string `type:"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 feedback@example.com,
	// then you would specify the ReturnPathArn to be arn:aws:ses:us-east-1:123456789012:identity/example.com,
	// and the ReturnPath to be feedback@example.com.
	//
	// For more information about sending authorization, see the Amazon SES Developer
	// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).
	ReturnPathArn *string `type:"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 (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html).
	//
	// 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 (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).
	//
	//  In all cases, the email address must be 7-bit ASCII. If the text must contain
	// any other characters, then you must use MIME encoded-word syntax (RFC 2047)
	// instead of a literal string. MIME encoded-word syntax uses the following
	// form: =?charset?encoding?encoded-text?=. For more information, see RFC 2047
	// (http://tools.ietf.org/html/rfc2047).
	Source *string `type:"string" required:"true"`

	// 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 user@example.com,
	// then you would specify the SourceArn to be arn:aws:ses:us-east-1:123456789012:identity/example.com,
	// and the Source to be user@example.com.
	//
	// For more information about sending authorization, see the Amazon SES Developer
	// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).
	SourceArn *string `type:"string"`
	// contains filtered or unexported fields
}

Represents a request to send a single formatted email using Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-formatted.html).

func (SendEmailInput) GoString added in v0.6.5

func (s SendEmailInput) GoString() string

GoString returns the string representation

func (SendEmailInput) String added in v0.6.5

func (s SendEmailInput) String() string

String returns the string representation

func (*SendEmailInput) Validate added in v1.1.21

func (s *SendEmailInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SendEmailOutput

type SendEmailOutput struct {

	// The unique message identifier returned from the SendEmail action.
	MessageId *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a unique message ID.

func (SendEmailOutput) GoString added in v0.6.5

func (s SendEmailOutput) GoString() string

GoString returns the string representation

func (SendEmailOutput) String added in v0.6.5

func (s SendEmailOutput) String() string

String returns the string representation

type SendRawEmailInput

type SendRawEmailInput struct {

	// A list of destinations for the message, consisting of To:, CC:, and BCC:
	// addresses.
	Destinations []*string `type:"list"`

	// 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.
	//
	//  For information about when to use this parameter, see the description of
	// SendRawEmail in this guide, or see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html).
	FromArn *string `type:"string"`

	// The raw text of the message. The client is responsible for ensuring the following:
	//
	//   Message must contain a header and a body, separated by a blank line.
	//
	//   All required header fields must be present.
	//
	//   Each part of a multipart MIME message must be formatted properly.
	//
	//   MIME content types must be among those supported by Amazon SES. For more
	// information, go to the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mime-types.html).
	//
	//   Must be base64-encoded.
	RawMessage *RawMessage `type:"structure" required:"true"`

	// 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 feedback@example.com,
	// then you would specify the ReturnPathArn to be arn:aws:ses:us-east-1:123456789012:identity/example.com,
	// and the ReturnPath to be feedback@example.com.
	//
	// 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.
	//
	//  For information about when to use this parameter, see the description of
	// SendRawEmail in this guide, or see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html).
	ReturnPathArn *string `type:"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.)
	//
	//  By default, the string must be 7-bit ASCII. If the text must contain any
	// other characters, then you must use MIME encoded-word syntax (RFC 2047) instead
	// of a literal string. MIME encoded-word syntax uses the following form: =?charset?encoding?encoded-text?=.
	// For more information, see RFC 2047 (http://tools.ietf.org/html/rfc2047).
	//
	//  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.
	Source *string `type:"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 user@example.com,
	// then you would specify the SourceArn to be arn:aws:ses:us-east-1:123456789012:identity/example.com,
	// and the Source to be user@example.com.
	//
	// 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.
	//
	//  For information about when to use this parameter, see the description of
	// SendRawEmail in this guide, or see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html).
	SourceArn *string `type:"string"`
	// contains filtered or unexported fields
}

Represents a request to send a single raw email using Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html).

func (SendRawEmailInput) GoString added in v0.6.5

func (s SendRawEmailInput) GoString() string

GoString returns the string representation

func (SendRawEmailInput) String added in v0.6.5

func (s SendRawEmailInput) String() string

String returns the string representation

func (*SendRawEmailInput) Validate added in v1.1.21

func (s *SendRawEmailInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SendRawEmailOutput

type SendRawEmailOutput struct {

	// The unique message identifier returned from the SendRawEmail action.
	MessageId *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a unique message ID.

func (SendRawEmailOutput) GoString added in v0.6.5

func (s SendRawEmailOutput) GoString() string

GoString returns the string representation

func (SendRawEmailOutput) String added in v0.6.5

func (s SendRawEmailOutput) String() string

String returns the string representation

type SetActiveReceiptRuleSetInput added in v0.9.10

type SetActiveReceiptRuleSetInput struct {

	// The name of the receipt rule set to make active. Setting this value to null
	// disables all email receiving.
	RuleSetName *string `type:"string"`
	// contains filtered or unexported fields
}

Represents a request to set a receipt rule set as the active receipt rule set. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (SetActiveReceiptRuleSetInput) GoString added in v0.9.10

func (s SetActiveReceiptRuleSetInput) GoString() string

GoString returns the string representation

func (SetActiveReceiptRuleSetInput) String added in v0.9.10

String returns the string representation

type SetActiveReceiptRuleSetOutput added in v0.9.10

type SetActiveReceiptRuleSetOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (SetActiveReceiptRuleSetOutput) GoString added in v0.9.10

GoString returns the string representation

func (SetActiveReceiptRuleSetOutput) String added in v0.9.10

String returns the string representation

type SetIdentityDkimEnabledInput added in v0.9.5

type SetIdentityDkimEnabledInput struct {

	// Sets whether DKIM signing is enabled for an identity. Set to true to enable
	// DKIM signing for this identity; false to disable it.
	DkimEnabled *bool `type:"boolean" required:"true"`

	// The identity for which DKIM signing should be enabled or disabled.
	Identity *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to enable or disable Amazon SES Easy DKIM signing for an identity. For more information about setting up Easy DKIM, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html).

func (SetIdentityDkimEnabledInput) GoString added in v0.9.5

func (s SetIdentityDkimEnabledInput) GoString() string

GoString returns the string representation

func (SetIdentityDkimEnabledInput) String added in v0.9.5

String returns the string representation

func (*SetIdentityDkimEnabledInput) Validate added in v1.1.21

func (s *SetIdentityDkimEnabledInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SetIdentityDkimEnabledOutput added in v0.9.5

type SetIdentityDkimEnabledOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (SetIdentityDkimEnabledOutput) GoString added in v0.9.5

func (s SetIdentityDkimEnabledOutput) GoString() string

GoString returns the string representation

func (SetIdentityDkimEnabledOutput) String added in v0.9.5

String returns the string representation

type SetIdentityFeedbackForwardingEnabledInput

type SetIdentityFeedbackForwardingEnabledInput struct {

	// 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.
	ForwardingEnabled *bool `type:"boolean" required:"true"`

	// The identity for which to set bounce and complaint notification forwarding.
	// Examples: user@example.com, example.com.
	Identity *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to enable or disable whether Amazon SES forwards you bounce and complaint notifications through email. For information about email feedback forwarding, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-email.html).

func (SetIdentityFeedbackForwardingEnabledInput) GoString added in v0.6.5

GoString returns the string representation

func (SetIdentityFeedbackForwardingEnabledInput) String added in v0.6.5

String returns the string representation

func (*SetIdentityFeedbackForwardingEnabledInput) Validate added in v1.1.21

Validate inspects the fields of the type to determine if they are valid.

type SetIdentityFeedbackForwardingEnabledOutput

type SetIdentityFeedbackForwardingEnabledOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (SetIdentityFeedbackForwardingEnabledOutput) GoString added in v0.6.5

GoString returns the string representation

func (SetIdentityFeedbackForwardingEnabledOutput) String added in v0.6.5

String returns the string representation

type SetIdentityHeadersInNotificationsEnabledInput added in v1.1.35

type SetIdentityHeadersInNotificationsEnabledInput struct {

	// 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.
	Enabled *bool `type:"boolean" required:"true"`

	// The identity for which to enable or disable headers in notifications. Examples:
	// user@example.com, example.com.
	Identity *string `type:"string" required:"true"`

	// The notification type for which to enable or disable headers in notifications.
	NotificationType *string `type:"string" required:"true" enum:"NotificationType"`
	// contains filtered or unexported fields
}

Represents a request to set whether Amazon SES includes the original email headers in the Amazon SNS notifications of a specified type. For information about notifications, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-sns.html).

func (SetIdentityHeadersInNotificationsEnabledInput) GoString added in v1.1.35

GoString returns the string representation

func (SetIdentityHeadersInNotificationsEnabledInput) String added in v1.1.35

String returns the string representation

func (*SetIdentityHeadersInNotificationsEnabledInput) Validate added in v1.1.35

Validate inspects the fields of the type to determine if they are valid.

type SetIdentityHeadersInNotificationsEnabledOutput added in v1.1.35

type SetIdentityHeadersInNotificationsEnabledOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (SetIdentityHeadersInNotificationsEnabledOutput) GoString added in v1.1.35

GoString returns the string representation

func (SetIdentityHeadersInNotificationsEnabledOutput) String added in v1.1.35

String returns the string representation

type SetIdentityMailFromDomainInput added in v1.1.11

type SetIdentityMailFromDomainInput struct {

	// 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.
	BehaviorOnMXFailure *string `type:"string" enum:"BehaviorOnMXFailure"`

	// The verified identity for which you want to enable or disable the specified
	// custom MAIL FROM domain.
	Identity *string `type:"string" required:"true"`

	// 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 (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html)),
	// and 3) not be used to receive emails. A value of null disables the custom
	// MAIL FROM setting for the identity.
	MailFromDomain *string `type:"string"`
	// contains filtered or unexported fields
}

Represents a request to enable or disable the Amazon SES custom MAIL FROM domain setup for a verified identity. For information about using a custom MAIL FROM domain, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html).

func (SetIdentityMailFromDomainInput) GoString added in v1.1.11

GoString returns the string representation

func (SetIdentityMailFromDomainInput) String added in v1.1.11

String returns the string representation

func (*SetIdentityMailFromDomainInput) Validate added in v1.1.21

func (s *SetIdentityMailFromDomainInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SetIdentityMailFromDomainOutput added in v1.1.11

type SetIdentityMailFromDomainOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (SetIdentityMailFromDomainOutput) GoString added in v1.1.11

GoString returns the string representation

func (SetIdentityMailFromDomainOutput) String added in v1.1.11

String returns the string representation

type SetIdentityNotificationTopicInput

type SetIdentityNotificationTopicInput struct {

	// The identity for which the Amazon SNS topic will be set. You can specify
	// an identity by using its name or by using its Amazon Resource Name (ARN).
	// Examples: user@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.
	Identity *string `type:"string" required:"true"`

	// The type of notifications that will be published to the specified Amazon
	// SNS topic.
	NotificationType *string `type:"string" required:"true" enum:"NotificationType"`

	// 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.
	SnsTopic *string `type:"string"`
	// contains filtered or unexported fields
}

Represents a request to specify the Amazon SNS topic to which Amazon SES will publish bounce, complaint, or delivery notifications for emails sent with that identity as the Source. For information about Amazon SES notifications, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-sns.html).

func (SetIdentityNotificationTopicInput) GoString added in v0.6.5

GoString returns the string representation

func (SetIdentityNotificationTopicInput) String added in v0.6.5

String returns the string representation

func (*SetIdentityNotificationTopicInput) Validate added in v1.1.21

Validate inspects the fields of the type to determine if they are valid.

type SetIdentityNotificationTopicOutput

type SetIdentityNotificationTopicOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (SetIdentityNotificationTopicOutput) GoString added in v0.6.5

GoString returns the string representation

func (SetIdentityNotificationTopicOutput) String added in v0.6.5

String returns the string representation

type SetReceiptRulePositionInput added in v0.9.10

type SetReceiptRulePositionInput struct {

	// The name of the receipt rule after which to place the specified receipt rule.
	After *string `type:"string"`

	// The name of the receipt rule to reposition.
	RuleName *string `type:"string" required:"true"`

	// The name of the receipt rule set that contains the receipt rule to reposition.
	RuleSetName *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to set the position of a receipt rule in a receipt rule set. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (SetReceiptRulePositionInput) GoString added in v0.9.10

func (s SetReceiptRulePositionInput) GoString() string

GoString returns the string representation

func (SetReceiptRulePositionInput) String added in v0.9.10

String returns the string representation

func (*SetReceiptRulePositionInput) Validate added in v1.1.21

func (s *SetReceiptRulePositionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SetReceiptRulePositionOutput added in v0.9.10

type SetReceiptRulePositionOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (SetReceiptRulePositionOutput) GoString added in v0.9.10

func (s SetReceiptRulePositionOutput) GoString() string

GoString returns the string representation

func (SetReceiptRulePositionOutput) String added in v0.9.10

String returns the string representation

type StopAction added in v0.9.10

type StopAction struct {

	// The scope to which the Stop action applies. That is, what is being stopped.
	Scope *string `type:"string" required:"true" enum:"StopScope"`

	// The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the
	// stop action is taken. An example of an Amazon SNS topic ARN is arn:aws:sns:us-west-2:123456789012:MyTopic.
	// For more information about Amazon SNS topics, see the Amazon SNS Developer
	// Guide (http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html).
	TopicArn *string `type:"string"`
	// contains filtered or unexported fields
}

When included in a receipt rule, this action terminates the evaluation of the receipt rule set and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS).

For information about setting a stop action in a receipt rule, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-stop.html).

func (StopAction) GoString added in v0.9.10

func (s StopAction) GoString() string

GoString returns the string representation

func (StopAction) String added in v0.9.10

func (s StopAction) String() string

String returns the string representation

func (*StopAction) Validate added in v1.1.21

func (s *StopAction) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateReceiptRuleInput added in v0.9.10

type UpdateReceiptRuleInput struct {

	// A data structure that contains the updated receipt rule information.
	Rule *ReceiptRule `type:"structure" required:"true"`

	// The name of the receipt rule set to which the receipt rule belongs.
	RuleSetName *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to update a receipt rule. You use receipt rules to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html).

func (UpdateReceiptRuleInput) GoString added in v0.9.10

func (s UpdateReceiptRuleInput) GoString() string

GoString returns the string representation

func (UpdateReceiptRuleInput) String added in v0.9.10

func (s UpdateReceiptRuleInput) String() string

String returns the string representation

func (*UpdateReceiptRuleInput) Validate added in v1.1.21

func (s *UpdateReceiptRuleInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateReceiptRuleOutput added in v0.9.10

type UpdateReceiptRuleOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (UpdateReceiptRuleOutput) GoString added in v0.9.10

func (s UpdateReceiptRuleOutput) GoString() string

GoString returns the string representation

func (UpdateReceiptRuleOutput) String added in v0.9.10

func (s UpdateReceiptRuleOutput) String() string

String returns the string representation

type VerifyDomainDkimInput added in v0.9.5

type VerifyDomainDkimInput struct {

	// The name of the domain to be verified for Easy DKIM signing.
	Domain *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to generate the CNAME records needed to set up Easy DKIM with Amazon SES. For more information about setting up Easy DKIM, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html).

func (VerifyDomainDkimInput) GoString added in v0.9.5

func (s VerifyDomainDkimInput) GoString() string

GoString returns the string representation

func (VerifyDomainDkimInput) String added in v0.9.5

func (s VerifyDomainDkimInput) String() string

String returns the string representation

func (*VerifyDomainDkimInput) Validate added in v1.1.21

func (s *VerifyDomainDkimInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type VerifyDomainDkimOutput added in v0.9.5

type VerifyDomainDkimOutput struct {

	// A set of character strings that represent the domain's identity. If the identity
	// is an email address, the tokens represent the domain of that address.
	//
	// 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 emails originating from that domain.
	//
	// For more information about creating DNS records using DKIM tokens, go to
	// the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html).
	DkimTokens []*string `type:"list" required:"true"`
	// contains filtered or unexported fields
}

Returns CNAME records that you must publish to the DNS server of your domain to set up Easy DKIM with Amazon SES.

func (VerifyDomainDkimOutput) GoString added in v0.9.5

func (s VerifyDomainDkimOutput) GoString() string

GoString returns the string representation

func (VerifyDomainDkimOutput) String added in v0.9.5

func (s VerifyDomainDkimOutput) String() string

String returns the string representation

type VerifyDomainIdentityInput

type VerifyDomainIdentityInput struct {

	// The domain to be verified.
	Domain *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to begin Amazon SES domain verification and to generate the TXT records that you must publish to the DNS server of your domain to complete the verification. For information about domain verification, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-domains.html).

func (VerifyDomainIdentityInput) GoString added in v0.6.5

func (s VerifyDomainIdentityInput) GoString() string

GoString returns the string representation

func (VerifyDomainIdentityInput) String added in v0.6.5

func (s VerifyDomainIdentityInput) String() string

String returns the string representation

func (*VerifyDomainIdentityInput) Validate added in v1.1.21

func (s *VerifyDomainIdentityInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type VerifyDomainIdentityOutput

type VerifyDomainIdentityOutput struct {

	// A TXT record that must be placed in the DNS settings for the domain, in order
	// to complete domain verification.
	VerificationToken *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Returns a TXT record that you must publish to the DNS server of your domain to complete domain verification with Amazon SES.

func (VerifyDomainIdentityOutput) GoString added in v0.6.5

func (s VerifyDomainIdentityOutput) GoString() string

GoString returns the string representation

func (VerifyDomainIdentityOutput) String added in v0.6.5

String returns the string representation

type VerifyEmailAddressInput

type VerifyEmailAddressInput struct {

	// The email address to be verified.
	EmailAddress *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to begin email address verification with Amazon SES. For information about email address verification, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-email-addresses.html).

func (VerifyEmailAddressInput) GoString added in v0.6.5

func (s VerifyEmailAddressInput) GoString() string

GoString returns the string representation

func (VerifyEmailAddressInput) String added in v0.6.5

func (s VerifyEmailAddressInput) String() string

String returns the string representation

func (*VerifyEmailAddressInput) Validate added in v1.1.21

func (s *VerifyEmailAddressInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type VerifyEmailAddressOutput

type VerifyEmailAddressOutput struct {
	// contains filtered or unexported fields
}

func (VerifyEmailAddressOutput) GoString added in v0.6.5

func (s VerifyEmailAddressOutput) GoString() string

GoString returns the string representation

func (VerifyEmailAddressOutput) String added in v0.6.5

func (s VerifyEmailAddressOutput) String() string

String returns the string representation

type VerifyEmailIdentityInput

type VerifyEmailIdentityInput struct {

	// The email address to be verified.
	EmailAddress *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents a request to begin email address verification with Amazon SES. For information about email address verification, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-email-addresses.html).

func (VerifyEmailIdentityInput) GoString added in v0.6.5

func (s VerifyEmailIdentityInput) GoString() string

GoString returns the string representation

func (VerifyEmailIdentityInput) String added in v0.6.5

func (s VerifyEmailIdentityInput) String() string

String returns the string representation

func (*VerifyEmailIdentityInput) Validate added in v1.1.21

func (s *VerifyEmailIdentityInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type VerifyEmailIdentityOutput

type VerifyEmailIdentityOutput struct {
	// contains filtered or unexported fields
}

An empty element returned on a successful request.

func (VerifyEmailIdentityOutput) GoString added in v0.6.5

func (s VerifyEmailIdentityOutput) GoString() string

GoString returns the string representation

func (VerifyEmailIdentityOutput) String added in v0.6.5

func (s VerifyEmailIdentityOutput) String() string

String returns the string representation

type WorkmailAction added in v0.9.10

type WorkmailAction struct {

	// The ARN of the Amazon WorkMail organization. An example of an Amazon WorkMail
	// organization ARN is arn:aws:workmail:us-west-2:123456789012:organization/m-68755160c4cb4e29a2b2f8fb58f359d7.
	// For information about Amazon WorkMail organizations, see the Amazon WorkMail
	// Administrator Guide (http://docs.aws.amazon.com/workmail/latest/adminguide/organizations_overview.html).
	OrganizationArn *string `type:"string" required:"true"`

	// The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the
	// WorkMail action is called. An example of an Amazon SNS topic ARN is arn:aws:sns:us-west-2:123456789012:MyTopic.
	// For more information about Amazon SNS topics, see the Amazon SNS Developer
	// Guide (http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html).
	TopicArn *string `type:"string"`
	// contains filtered or unexported fields
}

When included in a receipt rule, this action calls Amazon WorkMail and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS). You will typically not use this action directly because Amazon WorkMail adds the rule automatically during its setup procedure.

For information using a receipt rule to call Amazon WorkMail, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-workmail.html).

func (WorkmailAction) GoString added in v0.9.10

func (s WorkmailAction) GoString() string

GoString returns the string representation

func (WorkmailAction) String added in v0.9.10

func (s WorkmailAction) String() string

String returns the string representation

func (*WorkmailAction) Validate added in v1.1.21

func (s *WorkmailAction) Validate() error

Validate inspects the fields of the type to determine if they are valid.

Directories

Path Synopsis
Package sesiface provides an interface for the Amazon Simple Email Service.
Package sesiface provides an interface for the Amazon Simple Email Service.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL