2016-06-26 23:07:14 +02:00
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package ses provides a client for Amazon Simple Email Service.
package ses
import (
2016-07-15 15:49:02 +02:00
"fmt"
2016-06-26 23:07:14 +02:00
"time"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/private/protocol"
"github.com/aws/aws-sdk-go/private/protocol/query"
)
const opCloneReceiptRuleSet = "CloneReceiptRuleSet"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See CloneReceiptRuleSet for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CloneReceiptRuleSet
2016-06-26 23:07:14 +02:00
func ( c * SES ) CloneReceiptRuleSetRequest ( input * CloneReceiptRuleSetInput ) ( req * request . Request , output * CloneReceiptRuleSetOutput ) {
op := & request . Operation {
Name : opCloneReceiptRuleSet ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CloneReceiptRuleSetInput { }
}
output = & CloneReceiptRuleSetOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// CloneReceiptRuleSet API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation CloneReceiptRuleSet for usage and error information.
//
// Returned Error Codes:
// * RuleSetDoesNotExist
// Indicates that the provided receipt rule set does not exist.
//
// * AlreadyExists
2016-11-19 19:41:01 +01:00
// Indicates that a resource could not be created because of a naming conflict.
2016-10-17 23:21:08 +02:00
//
// * LimitExceeded
2016-11-19 19:41:01 +01:00
// Indicates that a resource could not be created because of service limits.
// For a list of Amazon SES limits, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/limits.html).
2016-10-17 23:21:08 +02:00
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CloneReceiptRuleSet
2016-06-26 23:07:14 +02:00
func ( c * SES ) CloneReceiptRuleSet ( input * CloneReceiptRuleSetInput ) ( * CloneReceiptRuleSetOutput , error ) {
req , out := c . CloneReceiptRuleSetRequest ( input )
err := req . Send ( )
return out , err
}
2016-11-19 19:41:01 +01:00
const opCreateConfigurationSet = "CreateConfigurationSet"
// CreateConfigurationSetRequest generates a "aws/request.Request" representing the
// client's request for the CreateConfigurationSet operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See CreateConfigurationSet for usage and error information.
//
// 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 CreateConfigurationSet 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 CreateConfigurationSetRequest method.
// req, resp := client.CreateConfigurationSetRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateConfigurationSet
2016-11-19 19:41:01 +01:00
func ( c * SES ) CreateConfigurationSetRequest ( input * CreateConfigurationSetInput ) ( req * request . Request , output * CreateConfigurationSetOutput ) {
op := & request . Operation {
Name : opCreateConfigurationSet ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateConfigurationSetInput { }
}
output = & CreateConfigurationSetOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-11-19 19:41:01 +01:00
return
}
// CreateConfigurationSet API operation for Amazon Simple Email Service.
//
// Creates a configuration set.
//
// Configuration sets enable you to publish email sending events. For information
// about using configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
//
// This action is throttled at one request per second.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation CreateConfigurationSet for usage and error information.
//
// Returned Error Codes:
// * ConfigurationSetAlreadyExists
// Indicates that the configuration set could not be created because of a naming
// conflict.
//
// * InvalidConfigurationSet
// Indicates that the configuration set is invalid. See the error message for
// details.
//
// * LimitExceeded
// Indicates that a resource could not be created because of service limits.
// For a list of Amazon SES limits, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/limits.html).
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateConfigurationSet
2016-11-19 19:41:01 +01:00
func ( c * SES ) CreateConfigurationSet ( input * CreateConfigurationSetInput ) ( * CreateConfigurationSetOutput , error ) {
req , out := c . CreateConfigurationSetRequest ( input )
err := req . Send ( )
return out , err
}
const opCreateConfigurationSetEventDestination = "CreateConfigurationSetEventDestination"
// CreateConfigurationSetEventDestinationRequest generates a "aws/request.Request" representing the
// client's request for the CreateConfigurationSetEventDestination operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See CreateConfigurationSetEventDestination for usage and error information.
//
// 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 CreateConfigurationSetEventDestination 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 CreateConfigurationSetEventDestinationRequest method.
// req, resp := client.CreateConfigurationSetEventDestinationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateConfigurationSetEventDestination
2016-11-19 19:41:01 +01:00
func ( c * SES ) CreateConfigurationSetEventDestinationRequest ( input * CreateConfigurationSetEventDestinationInput ) ( req * request . Request , output * CreateConfigurationSetEventDestinationOutput ) {
op := & request . Operation {
Name : opCreateConfigurationSetEventDestination ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateConfigurationSetEventDestinationInput { }
}
output = & CreateConfigurationSetEventDestinationOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-11-19 19:41:01 +01:00
return
}
// CreateConfigurationSetEventDestination API operation for Amazon Simple Email Service.
//
// Creates a configuration set event destination.
//
// When you create or update an event destination, you must provide one, and
// only one, destination. The destination can be either Amazon CloudWatch or
// Amazon Kinesis Firehose.
//
// An event destination is the AWS service to which Amazon SES publishes the
// email sending events associated with a configuration set. For information
// about using configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
//
// This action is throttled at one request per second.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation CreateConfigurationSetEventDestination for usage and error information.
//
// Returned Error Codes:
// * ConfigurationSetDoesNotExist
// Indicates that the configuration set does not exist.
//
// * EventDestinationAlreadyExists
// Indicates that the event destination could not be created because of a naming
// conflict.
//
// * InvalidCloudWatchDestination
// Indicates that the Amazon CloudWatch destination is invalid. See the error
// message for details.
//
// * InvalidFirehoseDestination
// Indicates that the Amazon Kinesis Firehose destination is invalid. See the
// error message for details.
//
// * LimitExceeded
// Indicates that a resource could not be created because of service limits.
// For a list of Amazon SES limits, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/limits.html).
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateConfigurationSetEventDestination
2016-11-19 19:41:01 +01:00
func ( c * SES ) CreateConfigurationSetEventDestination ( input * CreateConfigurationSetEventDestinationInput ) ( * CreateConfigurationSetEventDestinationOutput , error ) {
req , out := c . CreateConfigurationSetEventDestinationRequest ( input )
err := req . Send ( )
return out , err
}
2016-06-26 23:07:14 +02:00
const opCreateReceiptFilter = "CreateReceiptFilter"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See CreateReceiptFilter for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptFilter
2016-06-26 23:07:14 +02:00
func ( c * SES ) CreateReceiptFilterRequest ( input * CreateReceiptFilterInput ) ( req * request . Request , output * CreateReceiptFilterOutput ) {
op := & request . Operation {
Name : opCreateReceiptFilter ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateReceiptFilterInput { }
}
output = & CreateReceiptFilterOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// CreateReceiptFilter API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Creates a new IP address filter.
//
2016-11-19 19:41:01 +01:00
// 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).
2016-06-26 23:07:14 +02:00
//
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation CreateReceiptFilter for usage and error information.
//
// Returned Error Codes:
// * LimitExceeded
2016-11-19 19:41:01 +01:00
// Indicates that a resource could not be created because of service limits.
// For a list of Amazon SES limits, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/limits.html).
2016-10-17 23:21:08 +02:00
//
// * AlreadyExists
2016-11-19 19:41:01 +01:00
// Indicates that a resource could not be created because of a naming conflict.
2016-10-17 23:21:08 +02:00
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptFilter
2016-06-26 23:07:14 +02:00
func ( c * SES ) CreateReceiptFilter ( input * CreateReceiptFilterInput ) ( * CreateReceiptFilterOutput , error ) {
req , out := c . CreateReceiptFilterRequest ( input )
err := req . Send ( )
return out , err
}
const opCreateReceiptRule = "CreateReceiptRule"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See CreateReceiptRule for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptRule
2016-06-26 23:07:14 +02:00
func ( c * SES ) CreateReceiptRuleRequest ( input * CreateReceiptRuleInput ) ( req * request . Request , output * CreateReceiptRuleOutput ) {
op := & request . Operation {
Name : opCreateReceiptRule ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateReceiptRuleInput { }
}
output = & CreateReceiptRuleOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// CreateReceiptRule API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation CreateReceiptRule for usage and error information.
//
// Returned Error Codes:
// * InvalidSnsTopic
// Indicates that the provided Amazon SNS topic is invalid, or that Amazon SES
// could not publish to the topic, possibly due to permissions issues. For information
// about giving permissions, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html).
//
// * InvalidS3Configuration
// Indicates that the provided Amazon S3 bucket or AWS KMS encryption key is
// invalid, or that Amazon SES could not publish to the bucket, possibly due
// to permissions issues. For information about giving permissions, see the
// Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html).
//
// * InvalidLambdaFunction
// Indicates that the provided AWS Lambda function is invalid, or that Amazon
// SES could not execute the provided function, possibly due to permissions
// issues. For information about giving permissions, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html).
//
// * AlreadyExists
2016-11-19 19:41:01 +01:00
// Indicates that a resource could not be created because of a naming conflict.
2016-10-17 23:21:08 +02:00
//
// * RuleDoesNotExist
// Indicates that the provided receipt rule does not exist.
//
// * RuleSetDoesNotExist
// Indicates that the provided receipt rule set does not exist.
//
// * LimitExceeded
2016-11-19 19:41:01 +01:00
// Indicates that a resource could not be created because of service limits.
// For a list of Amazon SES limits, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/limits.html).
2016-10-17 23:21:08 +02:00
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptRule
2016-06-26 23:07:14 +02:00
func ( c * SES ) CreateReceiptRule ( input * CreateReceiptRuleInput ) ( * CreateReceiptRuleOutput , error ) {
req , out := c . CreateReceiptRuleRequest ( input )
err := req . Send ( )
return out , err
}
const opCreateReceiptRuleSet = "CreateReceiptRuleSet"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See CreateReceiptRuleSet for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptRuleSet
2016-06-26 23:07:14 +02:00
func ( c * SES ) CreateReceiptRuleSetRequest ( input * CreateReceiptRuleSetInput ) ( req * request . Request , output * CreateReceiptRuleSetOutput ) {
op := & request . Operation {
Name : opCreateReceiptRuleSet ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateReceiptRuleSetInput { }
}
output = & CreateReceiptRuleSetOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// CreateReceiptRuleSet API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation CreateReceiptRuleSet for usage and error information.
//
// Returned Error Codes:
// * AlreadyExists
2016-11-19 19:41:01 +01:00
// Indicates that a resource could not be created because of a naming conflict.
2016-10-17 23:21:08 +02:00
//
// * LimitExceeded
2016-11-19 19:41:01 +01:00
// Indicates that a resource could not be created because of service limits.
// For a list of Amazon SES limits, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/limits.html).
2016-10-17 23:21:08 +02:00
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptRuleSet
2016-06-26 23:07:14 +02:00
func ( c * SES ) CreateReceiptRuleSet ( input * CreateReceiptRuleSetInput ) ( * CreateReceiptRuleSetOutput , error ) {
req , out := c . CreateReceiptRuleSetRequest ( input )
err := req . Send ( )
return out , err
}
2016-11-19 19:41:01 +01:00
const opDeleteConfigurationSet = "DeleteConfigurationSet"
// DeleteConfigurationSetRequest generates a "aws/request.Request" representing the
// client's request for the DeleteConfigurationSet operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DeleteConfigurationSet for usage and error information.
//
// 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 DeleteConfigurationSet 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 DeleteConfigurationSetRequest method.
// req, resp := client.DeleteConfigurationSetRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteConfigurationSet
2016-11-19 19:41:01 +01:00
func ( c * SES ) DeleteConfigurationSetRequest ( input * DeleteConfigurationSetInput ) ( req * request . Request , output * DeleteConfigurationSetOutput ) {
op := & request . Operation {
Name : opDeleteConfigurationSet ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteConfigurationSetInput { }
}
output = & DeleteConfigurationSetOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-11-19 19:41:01 +01:00
return
}
// DeleteConfigurationSet API operation for Amazon Simple Email Service.
//
// Deletes a configuration set.
//
// Configuration sets enable you to publish email sending events. For information
// about using configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
//
// This action is throttled at one request per second.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation DeleteConfigurationSet for usage and error information.
//
// Returned Error Codes:
// * ConfigurationSetDoesNotExist
// Indicates that the configuration set does not exist.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteConfigurationSet
2016-11-19 19:41:01 +01:00
func ( c * SES ) DeleteConfigurationSet ( input * DeleteConfigurationSetInput ) ( * DeleteConfigurationSetOutput , error ) {
req , out := c . DeleteConfigurationSetRequest ( input )
err := req . Send ( )
return out , err
}
const opDeleteConfigurationSetEventDestination = "DeleteConfigurationSetEventDestination"
// DeleteConfigurationSetEventDestinationRequest generates a "aws/request.Request" representing the
// client's request for the DeleteConfigurationSetEventDestination operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See DeleteConfigurationSetEventDestination for usage and error information.
//
// 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 DeleteConfigurationSetEventDestination 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 DeleteConfigurationSetEventDestinationRequest method.
// req, resp := client.DeleteConfigurationSetEventDestinationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteConfigurationSetEventDestination
2016-11-19 19:41:01 +01:00
func ( c * SES ) DeleteConfigurationSetEventDestinationRequest ( input * DeleteConfigurationSetEventDestinationInput ) ( req * request . Request , output * DeleteConfigurationSetEventDestinationOutput ) {
op := & request . Operation {
Name : opDeleteConfigurationSetEventDestination ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteConfigurationSetEventDestinationInput { }
}
output = & DeleteConfigurationSetEventDestinationOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-11-19 19:41:01 +01:00
return
}
// DeleteConfigurationSetEventDestination API operation for Amazon Simple Email Service.
//
// Deletes a configuration set event destination.
//
// Configuration set event destinations are associated with configuration sets,
// which enable you to publish email sending events. For information about using
// configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
//
// This action is throttled at one request per second.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation DeleteConfigurationSetEventDestination for usage and error information.
//
// Returned Error Codes:
// * ConfigurationSetDoesNotExist
// Indicates that the configuration set does not exist.
//
// * EventDestinationDoesNotExist
// Indicates that the event destination does not exist.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteConfigurationSetEventDestination
2016-11-19 19:41:01 +01:00
func ( c * SES ) DeleteConfigurationSetEventDestination ( input * DeleteConfigurationSetEventDestinationInput ) ( * DeleteConfigurationSetEventDestinationOutput , error ) {
req , out := c . DeleteConfigurationSetEventDestinationRequest ( input )
err := req . Send ( )
return out , err
}
2016-06-26 23:07:14 +02:00
const opDeleteIdentity = "DeleteIdentity"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See DeleteIdentity for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteIdentity
2016-06-26 23:07:14 +02:00
func ( c * SES ) DeleteIdentityRequest ( input * DeleteIdentityInput ) ( req * request . Request , output * DeleteIdentityOutput ) {
op := & request . Operation {
Name : opDeleteIdentity ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteIdentityInput { }
}
output = & DeleteIdentityOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// DeleteIdentity API operation for Amazon Simple Email Service.
//
2016-07-15 15:49:02 +02:00
// Deletes the specified identity (an email address or a domain) from the list
// of verified identities.
2016-06-26 23:07:14 +02:00
//
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation DeleteIdentity for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteIdentity
2016-06-26 23:07:14 +02:00
func ( c * SES ) DeleteIdentity ( input * DeleteIdentityInput ) ( * DeleteIdentityOutput , error ) {
req , out := c . DeleteIdentityRequest ( input )
err := req . Send ( )
return out , err
}
const opDeleteIdentityPolicy = "DeleteIdentityPolicy"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See DeleteIdentityPolicy for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteIdentityPolicy
2016-06-26 23:07:14 +02:00
func ( c * SES ) DeleteIdentityPolicyRequest ( input * DeleteIdentityPolicyInput ) ( req * request . Request , output * DeleteIdentityPolicyOutput ) {
op := & request . Operation {
Name : opDeleteIdentityPolicy ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteIdentityPolicyInput { }
}
output = & DeleteIdentityPolicyOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// DeleteIdentityPolicy API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Deletes the specified sending authorization policy for the given identity
2016-07-15 15:49:02 +02:00
// (an email address or a domain). This API returns successfully even if a policy
2016-06-26 23:07:14 +02:00
// with the specified name does not exist.
//
2016-11-19 19:41:01 +01:00
// This API is for the identity owner only. If you have not verified the identity,
2016-07-15 15:49:02 +02:00
// this API will return an error.
//
2016-11-19 19:41:01 +01:00
// Sending authorization is a feature that enables an identity owner to authorize
2016-07-15 15:49:02 +02:00
// 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).
2016-06-26 23:07:14 +02:00
//
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation DeleteIdentityPolicy for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteIdentityPolicy
2016-06-26 23:07:14 +02:00
func ( c * SES ) DeleteIdentityPolicy ( input * DeleteIdentityPolicyInput ) ( * DeleteIdentityPolicyOutput , error ) {
req , out := c . DeleteIdentityPolicyRequest ( input )
err := req . Send ( )
return out , err
}
const opDeleteReceiptFilter = "DeleteReceiptFilter"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See DeleteReceiptFilter for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptFilter
2016-06-26 23:07:14 +02:00
func ( c * SES ) DeleteReceiptFilterRequest ( input * DeleteReceiptFilterInput ) ( req * request . Request , output * DeleteReceiptFilterOutput ) {
op := & request . Operation {
Name : opDeleteReceiptFilter ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteReceiptFilterInput { }
}
output = & DeleteReceiptFilterOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// DeleteReceiptFilter API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation DeleteReceiptFilter for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptFilter
2016-06-26 23:07:14 +02:00
func ( c * SES ) DeleteReceiptFilter ( input * DeleteReceiptFilterInput ) ( * DeleteReceiptFilterOutput , error ) {
req , out := c . DeleteReceiptFilterRequest ( input )
err := req . Send ( )
return out , err
}
const opDeleteReceiptRule = "DeleteReceiptRule"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See DeleteReceiptRule for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptRule
2016-06-26 23:07:14 +02:00
func ( c * SES ) DeleteReceiptRuleRequest ( input * DeleteReceiptRuleInput ) ( req * request . Request , output * DeleteReceiptRuleOutput ) {
op := & request . Operation {
Name : opDeleteReceiptRule ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteReceiptRuleInput { }
}
output = & DeleteReceiptRuleOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// DeleteReceiptRule API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation DeleteReceiptRule for usage and error information.
//
// Returned Error Codes:
// * RuleSetDoesNotExist
// Indicates that the provided receipt rule set does not exist.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptRule
2016-06-26 23:07:14 +02:00
func ( c * SES ) DeleteReceiptRule ( input * DeleteReceiptRuleInput ) ( * DeleteReceiptRuleOutput , error ) {
req , out := c . DeleteReceiptRuleRequest ( input )
err := req . Send ( )
return out , err
}
const opDeleteReceiptRuleSet = "DeleteReceiptRuleSet"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See DeleteReceiptRuleSet for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptRuleSet
2016-06-26 23:07:14 +02:00
func ( c * SES ) DeleteReceiptRuleSetRequest ( input * DeleteReceiptRuleSetInput ) ( req * request . Request , output * DeleteReceiptRuleSetOutput ) {
op := & request . Operation {
Name : opDeleteReceiptRuleSet ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteReceiptRuleSetInput { }
}
output = & DeleteReceiptRuleSetOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// DeleteReceiptRuleSet API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Deletes the specified receipt rule set and all of the receipt rules it contains.
//
2016-11-19 19:41:01 +01:00
// The currently active rule set cannot be deleted.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// For information about managing receipt rule sets, see the Amazon SES Developer
2016-07-15 15:49:02 +02:00
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html).
2016-06-26 23:07:14 +02:00
//
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation DeleteReceiptRuleSet for usage and error information.
//
// Returned Error Codes:
// * CannotDelete
// Indicates that the delete operation could not be completed.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptRuleSet
2016-06-26 23:07:14 +02:00
func ( c * SES ) DeleteReceiptRuleSet ( input * DeleteReceiptRuleSetInput ) ( * DeleteReceiptRuleSetOutput , error ) {
req , out := c . DeleteReceiptRuleSetRequest ( input )
err := req . Send ( )
return out , err
}
const opDeleteVerifiedEmailAddress = "DeleteVerifiedEmailAddress"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See DeleteVerifiedEmailAddress for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteVerifiedEmailAddress
2016-06-26 23:07:14 +02:00
func ( c * SES ) DeleteVerifiedEmailAddressRequest ( input * DeleteVerifiedEmailAddressInput ) ( req * request . Request , output * DeleteVerifiedEmailAddressOutput ) {
op := & request . Operation {
Name : opDeleteVerifiedEmailAddress ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteVerifiedEmailAddressInput { }
}
2017-01-23 22:22:31 +01:00
output = & DeleteVerifiedEmailAddressOutput { }
2016-06-26 23:07:14 +02:00
req = c . newRequest ( op , input , output )
req . Handlers . Unmarshal . Remove ( query . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
return
}
2016-10-17 23:21:08 +02:00
// DeleteVerifiedEmailAddress API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Deletes the specified email address from the list of verified addresses.
//
2016-11-19 19:41:01 +01:00
// The DeleteVerifiedEmailAddress action is deprecated as of the May 15, 2012
2016-06-26 23:07:14 +02:00
// release of Domain Verification. The DeleteIdentity action is now preferred.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation DeleteVerifiedEmailAddress for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteVerifiedEmailAddress
2016-06-26 23:07:14 +02:00
func ( c * SES ) DeleteVerifiedEmailAddress ( input * DeleteVerifiedEmailAddressInput ) ( * DeleteVerifiedEmailAddressOutput , error ) {
req , out := c . DeleteVerifiedEmailAddressRequest ( input )
err := req . Send ( )
return out , err
}
const opDescribeActiveReceiptRuleSet = "DescribeActiveReceiptRuleSet"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See DescribeActiveReceiptRuleSet for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeActiveReceiptRuleSet
2016-06-26 23:07:14 +02:00
func ( c * SES ) DescribeActiveReceiptRuleSetRequest ( input * DescribeActiveReceiptRuleSetInput ) ( req * request . Request , output * DescribeActiveReceiptRuleSetOutput ) {
op := & request . Operation {
Name : opDescribeActiveReceiptRuleSet ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeActiveReceiptRuleSetInput { }
}
output = & DescribeActiveReceiptRuleSetOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// DescribeActiveReceiptRuleSet API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation DescribeActiveReceiptRuleSet for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeActiveReceiptRuleSet
2016-06-26 23:07:14 +02:00
func ( c * SES ) DescribeActiveReceiptRuleSet ( input * DescribeActiveReceiptRuleSetInput ) ( * DescribeActiveReceiptRuleSetOutput , error ) {
req , out := c . DescribeActiveReceiptRuleSetRequest ( input )
err := req . Send ( )
return out , err
}
2016-11-19 19:41:01 +01:00
const opDescribeConfigurationSet = "DescribeConfigurationSet"
2016-06-26 23:07:14 +02:00
2016-11-19 19:41:01 +01:00
// DescribeConfigurationSetRequest generates a "aws/request.Request" representing the
// client's request for the DescribeConfigurationSet operation. The "output" return
2016-07-15 15:49:02 +02:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-11-19 19:41:01 +01:00
// See DescribeConfigurationSet for usage and error information.
2016-10-17 23:21:08 +02:00
//
2016-07-15 15:49:02 +02:00
// 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
2016-11-19 19:41:01 +01:00
// you just want the service response, call the DescribeConfigurationSet method directly
2016-07-15 15:49:02 +02:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
2016-11-19 19:41:01 +01:00
// // Example sending a request using the DescribeConfigurationSetRequest method.
// req, resp := client.DescribeConfigurationSetRequest(params)
2016-07-15 15:49:02 +02:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeConfigurationSet
2016-11-19 19:41:01 +01:00
func ( c * SES ) DescribeConfigurationSetRequest ( input * DescribeConfigurationSetInput ) ( req * request . Request , output * DescribeConfigurationSetOutput ) {
2016-06-26 23:07:14 +02:00
op := & request . Operation {
2016-11-19 19:41:01 +01:00
Name : opDescribeConfigurationSet ,
2016-06-26 23:07:14 +02:00
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
2016-11-19 19:41:01 +01:00
input = & DescribeConfigurationSetInput { }
2016-06-26 23:07:14 +02:00
}
2016-11-19 19:41:01 +01:00
output = & DescribeConfigurationSetOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-11-19 19:41:01 +01:00
// DescribeConfigurationSet API operation for Amazon Simple Email Service.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// Returns the details of the specified configuration set.
2016-06-26 23:07:14 +02:00
//
2016-11-19 19:41:01 +01:00
// Configuration sets enable you to publish email sending events. For information
// about using configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2016-06-26 23:07:14 +02:00
//
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
2016-11-19 19:41:01 +01:00
// API operation DescribeConfigurationSet for usage and error information.
2016-10-17 23:21:08 +02:00
//
// Returned Error Codes:
2016-11-19 19:41:01 +01:00
// * ConfigurationSetDoesNotExist
// Indicates that the configuration set does not exist.
2016-10-17 23:21:08 +02:00
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeConfigurationSet
2016-11-19 19:41:01 +01:00
func ( c * SES ) DescribeConfigurationSet ( input * DescribeConfigurationSetInput ) ( * DescribeConfigurationSetOutput , error ) {
req , out := c . DescribeConfigurationSetRequest ( input )
2016-06-26 23:07:14 +02:00
err := req . Send ( )
return out , err
}
2016-11-19 19:41:01 +01:00
const opDescribeReceiptRule = "DescribeReceiptRule"
2016-06-26 23:07:14 +02:00
2016-11-19 19:41:01 +01:00
// DescribeReceiptRuleRequest generates a "aws/request.Request" representing the
// client's request for the DescribeReceiptRule operation. The "output" return
2016-07-15 15:49:02 +02:00
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-11-19 19:41:01 +01:00
// See DescribeReceiptRule for usage and error information.
2016-10-17 23:21:08 +02:00
//
2016-07-15 15:49:02 +02:00
// 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
2016-11-19 19:41:01 +01:00
// you just want the service response, call the DescribeReceiptRule method directly
2016-07-15 15:49:02 +02:00
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
2016-11-19 19:41:01 +01:00
// // Example sending a request using the DescribeReceiptRuleRequest method.
// req, resp := client.DescribeReceiptRuleRequest(params)
2016-07-15 15:49:02 +02:00
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeReceiptRule
2016-11-19 19:41:01 +01:00
func ( c * SES ) DescribeReceiptRuleRequest ( input * DescribeReceiptRuleInput ) ( req * request . Request , output * DescribeReceiptRuleOutput ) {
2016-06-26 23:07:14 +02:00
op := & request . Operation {
2016-11-19 19:41:01 +01:00
Name : opDescribeReceiptRule ,
2016-06-26 23:07:14 +02:00
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
2016-11-19 19:41:01 +01:00
input = & DescribeReceiptRuleInput { }
2016-06-26 23:07:14 +02:00
}
2016-11-19 19:41:01 +01:00
output = & DescribeReceiptRuleOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-11-19 19:41:01 +01:00
// DescribeReceiptRule API operation for Amazon Simple Email Service.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// 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.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation DescribeReceiptRule for usage and error information.
//
// Returned Error Codes:
// * RuleDoesNotExist
// Indicates that the provided receipt rule does not exist.
//
// * RuleSetDoesNotExist
// Indicates that the provided receipt rule set does not exist.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeReceiptRule
2016-11-19 19:41:01 +01:00
func ( c * SES ) DescribeReceiptRule ( input * DescribeReceiptRuleInput ) ( * DescribeReceiptRuleOutput , error ) {
req , out := c . DescribeReceiptRuleRequest ( input )
err := req . Send ( )
return out , err
}
const opDescribeReceiptRuleSet = "DescribeReceiptRuleSet"
// 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.
//
// See DescribeReceiptRuleSet for usage and error information.
//
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeReceiptRuleSet
2016-11-19 19:41:01 +01:00
func ( c * SES ) DescribeReceiptRuleSetRequest ( input * DescribeReceiptRuleSetInput ) ( req * request . Request , output * DescribeReceiptRuleSetOutput ) {
op := & request . Operation {
Name : opDescribeReceiptRuleSet ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeReceiptRuleSetInput { }
}
output = & DescribeReceiptRuleSetOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-11-19 19:41:01 +01:00
return
}
// DescribeReceiptRuleSet API operation for Amazon Simple Email Service.
//
// Returns the details of the specified receipt rule set.
2016-06-26 23:07:14 +02:00
//
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation DescribeReceiptRuleSet for usage and error information.
//
// Returned Error Codes:
// * RuleSetDoesNotExist
// Indicates that the provided receipt rule set does not exist.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeReceiptRuleSet
2016-06-26 23:07:14 +02:00
func ( c * SES ) DescribeReceiptRuleSet ( input * DescribeReceiptRuleSetInput ) ( * DescribeReceiptRuleSetOutput , error ) {
req , out := c . DescribeReceiptRuleSetRequest ( input )
err := req . Send ( )
return out , err
}
const opGetIdentityDkimAttributes = "GetIdentityDkimAttributes"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See GetIdentityDkimAttributes for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityDkimAttributes
2016-06-26 23:07:14 +02:00
func ( c * SES ) GetIdentityDkimAttributesRequest ( input * GetIdentityDkimAttributesInput ) ( req * request . Request , output * GetIdentityDkimAttributesOutput ) {
op := & request . Operation {
Name : opGetIdentityDkimAttributes ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & GetIdentityDkimAttributesInput { }
}
output = & GetIdentityDkimAttributesOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// GetIdentityDkimAttributes API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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:
//
2016-11-19 19:41:01 +01:00
// * Whether Easy DKIM signing is enabled or disabled.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * A set of DKIM tokens that represent the identity. If the identity is
// an email address, the tokens represent the domain of that address.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * 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.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// This action is throttled at one request per second and can only get DKIM
2016-07-15 15:49:02 +02:00
// attributes for up to 100 identities at a time.
2016-06-26 23:07:14 +02:00
//
// 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).
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation GetIdentityDkimAttributes for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityDkimAttributes
2016-06-26 23:07:14 +02:00
func ( c * SES ) GetIdentityDkimAttributes ( input * GetIdentityDkimAttributesInput ) ( * GetIdentityDkimAttributesOutput , error ) {
req , out := c . GetIdentityDkimAttributesRequest ( input )
err := req . Send ( )
return out , err
}
2016-07-15 15:49:02 +02:00
const opGetIdentityMailFromDomainAttributes = "GetIdentityMailFromDomainAttributes"
// 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.
//
2016-10-17 23:21:08 +02:00
// See GetIdentityMailFromDomainAttributes for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityMailFromDomainAttributes
2016-07-15 15:49:02 +02:00
func ( c * SES ) GetIdentityMailFromDomainAttributesRequest ( input * GetIdentityMailFromDomainAttributesInput ) ( req * request . Request , output * GetIdentityMailFromDomainAttributesOutput ) {
op := & request . Operation {
Name : opGetIdentityMailFromDomainAttributes ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & GetIdentityMailFromDomainAttributesInput { }
}
output = & GetIdentityMailFromDomainAttributesOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-07-15 15:49:02 +02:00
return
}
2016-10-17 23:21:08 +02:00
// GetIdentityMailFromDomainAttributes API operation for Amazon Simple Email Service.
//
2016-07-15 15:49:02 +02:00
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation GetIdentityMailFromDomainAttributes for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityMailFromDomainAttributes
2016-07-15 15:49:02 +02:00
func ( c * SES ) GetIdentityMailFromDomainAttributes ( input * GetIdentityMailFromDomainAttributesInput ) ( * GetIdentityMailFromDomainAttributesOutput , error ) {
req , out := c . GetIdentityMailFromDomainAttributesRequest ( input )
err := req . Send ( )
return out , err
}
2016-06-26 23:07:14 +02:00
const opGetIdentityNotificationAttributes = "GetIdentityNotificationAttributes"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See GetIdentityNotificationAttributes for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityNotificationAttributes
2016-06-26 23:07:14 +02:00
func ( c * SES ) GetIdentityNotificationAttributesRequest ( input * GetIdentityNotificationAttributesInput ) ( req * request . Request , output * GetIdentityNotificationAttributesOutput ) {
op := & request . Operation {
Name : opGetIdentityNotificationAttributes ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & GetIdentityNotificationAttributesInput { }
}
output = & GetIdentityNotificationAttributesOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// GetIdentityNotificationAttributes API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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.
//
2016-11-19 19:41:01 +01:00
// 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).
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation GetIdentityNotificationAttributes for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityNotificationAttributes
2016-06-26 23:07:14 +02:00
func ( c * SES ) GetIdentityNotificationAttributes ( input * GetIdentityNotificationAttributesInput ) ( * GetIdentityNotificationAttributesOutput , error ) {
req , out := c . GetIdentityNotificationAttributesRequest ( input )
err := req . Send ( )
return out , err
}
const opGetIdentityPolicies = "GetIdentityPolicies"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See GetIdentityPolicies for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityPolicies
2016-06-26 23:07:14 +02:00
func ( c * SES ) GetIdentityPoliciesRequest ( input * GetIdentityPoliciesInput ) ( req * request . Request , output * GetIdentityPoliciesOutput ) {
op := & request . Operation {
Name : opGetIdentityPolicies ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & GetIdentityPoliciesInput { }
}
output = & GetIdentityPoliciesOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// GetIdentityPolicies API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Returns the requested sending authorization policies for the given identity
2016-07-15 15:49:02 +02:00
// (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.
//
2016-11-19 19:41:01 +01:00
// This API is for the identity owner only. If you have not verified the identity,
2016-07-15 15:49:02 +02:00
// this API will return an error.
2016-06-26 23:07:14 +02:00
//
2016-11-19 19:41:01 +01:00
// Sending authorization is a feature that enables an identity owner to authorize
2016-07-15 15:49:02 +02:00
// 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).
2016-06-26 23:07:14 +02:00
//
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation GetIdentityPolicies for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityPolicies
2016-06-26 23:07:14 +02:00
func ( c * SES ) GetIdentityPolicies ( input * GetIdentityPoliciesInput ) ( * GetIdentityPoliciesOutput , error ) {
req , out := c . GetIdentityPoliciesRequest ( input )
err := req . Send ( )
return out , err
}
const opGetIdentityVerificationAttributes = "GetIdentityVerificationAttributes"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See GetIdentityVerificationAttributes for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityVerificationAttributes
2016-06-26 23:07:14 +02:00
func ( c * SES ) GetIdentityVerificationAttributesRequest ( input * GetIdentityVerificationAttributesInput ) ( req * request . Request , output * GetIdentityVerificationAttributesOutput ) {
op := & request . Operation {
Name : opGetIdentityVerificationAttributes ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & GetIdentityVerificationAttributesInput { }
}
output = & GetIdentityVerificationAttributesOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// GetIdentityVerificationAttributes API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation GetIdentityVerificationAttributes for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityVerificationAttributes
2016-06-26 23:07:14 +02:00
func ( c * SES ) GetIdentityVerificationAttributes ( input * GetIdentityVerificationAttributesInput ) ( * GetIdentityVerificationAttributesOutput , error ) {
req , out := c . GetIdentityVerificationAttributesRequest ( input )
err := req . Send ( )
return out , err
}
const opGetSendQuota = "GetSendQuota"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See GetSendQuota for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetSendQuota
2016-06-26 23:07:14 +02:00
func ( c * SES ) GetSendQuotaRequest ( input * GetSendQuotaInput ) ( req * request . Request , output * GetSendQuotaOutput ) {
op := & request . Operation {
Name : opGetSendQuota ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & GetSendQuotaInput { }
}
output = & GetSendQuotaOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// GetSendQuota API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Returns the user's current sending limits.
//
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation GetSendQuota for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetSendQuota
2016-06-26 23:07:14 +02:00
func ( c * SES ) GetSendQuota ( input * GetSendQuotaInput ) ( * GetSendQuotaOutput , error ) {
req , out := c . GetSendQuotaRequest ( input )
err := req . Send ( )
return out , err
}
const opGetSendStatistics = "GetSendStatistics"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See GetSendStatistics for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetSendStatistics
2016-06-26 23:07:14 +02:00
func ( c * SES ) GetSendStatisticsRequest ( input * GetSendStatisticsInput ) ( req * request . Request , output * GetSendStatisticsOutput ) {
op := & request . Operation {
Name : opGetSendStatistics ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & GetSendStatisticsInput { }
}
output = & GetSendStatisticsOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// GetSendStatistics API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation GetSendStatistics for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetSendStatistics
2016-06-26 23:07:14 +02:00
func ( c * SES ) GetSendStatistics ( input * GetSendStatisticsInput ) ( * GetSendStatisticsOutput , error ) {
req , out := c . GetSendStatisticsRequest ( input )
err := req . Send ( )
return out , err
}
2016-11-19 19:41:01 +01:00
const opListConfigurationSets = "ListConfigurationSets"
// ListConfigurationSetsRequest generates a "aws/request.Request" representing the
// client's request for the ListConfigurationSets operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See ListConfigurationSets for usage and error information.
//
// 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 ListConfigurationSets 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 ListConfigurationSetsRequest method.
// req, resp := client.ListConfigurationSetsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListConfigurationSets
2016-11-19 19:41:01 +01:00
func ( c * SES ) ListConfigurationSetsRequest ( input * ListConfigurationSetsInput ) ( req * request . Request , output * ListConfigurationSetsOutput ) {
op := & request . Operation {
Name : opListConfigurationSets ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ListConfigurationSetsInput { }
}
output = & ListConfigurationSetsOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-11-19 19:41:01 +01:00
return
}
// ListConfigurationSets API operation for Amazon Simple Email Service.
//
// Lists the configuration sets associated with your AWS account.
//
// Configuration sets enable you to publish email sending events. For information
// about using configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
//
// This action is throttled at one request per second and can return up to 50
// configuration sets at a time.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation ListConfigurationSets for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListConfigurationSets
2016-11-19 19:41:01 +01:00
func ( c * SES ) ListConfigurationSets ( input * ListConfigurationSetsInput ) ( * ListConfigurationSetsOutput , error ) {
req , out := c . ListConfigurationSetsRequest ( input )
err := req . Send ( )
return out , err
}
2016-06-26 23:07:14 +02:00
const opListIdentities = "ListIdentities"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See ListIdentities for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListIdentities
2016-06-26 23:07:14 +02:00
func ( c * SES ) ListIdentitiesRequest ( input * ListIdentitiesInput ) ( req * request . Request , output * ListIdentitiesOutput ) {
op := & request . Operation {
Name : opListIdentities ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
Paginator : & request . Paginator {
InputTokens : [ ] string { "NextToken" } ,
OutputTokens : [ ] string { "NextToken" } ,
LimitToken : "MaxItems" ,
TruncationToken : "" ,
} ,
}
if input == nil {
input = & ListIdentitiesInput { }
}
output = & ListIdentitiesOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// ListIdentities API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Returns a list containing all of the identities (email addresses and domains)
2016-07-15 15:49:02 +02:00
// for your AWS account, regardless of verification status.
2016-06-26 23:07:14 +02:00
//
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation ListIdentities for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListIdentities
2016-06-26 23:07:14 +02:00
func ( c * SES ) ListIdentities ( input * ListIdentitiesInput ) ( * ListIdentitiesOutput , error ) {
req , out := c . ListIdentitiesRequest ( input )
err := req . Send ( )
return out , err
}
2016-07-15 15:49:02 +02:00
// 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
// })
//
2016-06-26 23:07:14 +02:00
func ( c * SES ) ListIdentitiesPages ( input * ListIdentitiesInput , fn func ( p * ListIdentitiesOutput , lastPage bool ) ( shouldContinue bool ) ) error {
page , _ := c . ListIdentitiesRequest ( input )
page . Handlers . Build . PushBack ( request . MakeAddToUserAgentFreeFormHandler ( "Paginator" ) )
return page . EachPage ( func ( p interface { } , lastPage bool ) bool {
return fn ( p . ( * ListIdentitiesOutput ) , lastPage )
} )
}
const opListIdentityPolicies = "ListIdentityPolicies"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See ListIdentityPolicies for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListIdentityPolicies
2016-06-26 23:07:14 +02:00
func ( c * SES ) ListIdentityPoliciesRequest ( input * ListIdentityPoliciesInput ) ( req * request . Request , output * ListIdentityPoliciesOutput ) {
op := & request . Operation {
Name : opListIdentityPolicies ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ListIdentityPoliciesInput { }
}
output = & ListIdentityPoliciesOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// ListIdentityPolicies API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Returns a list of sending authorization policies that are attached to the
2016-07-15 15:49:02 +02:00
// 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.
2016-06-26 23:07:14 +02:00
//
2016-11-19 19:41:01 +01:00
// This API is for the identity owner only. If you have not verified the identity,
2016-07-15 15:49:02 +02:00
// this API will return an error.
//
2016-11-19 19:41:01 +01:00
// Sending authorization is a feature that enables an identity owner to authorize
2016-07-15 15:49:02 +02:00
// 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).
2016-06-26 23:07:14 +02:00
//
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation ListIdentityPolicies for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListIdentityPolicies
2016-06-26 23:07:14 +02:00
func ( c * SES ) ListIdentityPolicies ( input * ListIdentityPoliciesInput ) ( * ListIdentityPoliciesOutput , error ) {
req , out := c . ListIdentityPoliciesRequest ( input )
err := req . Send ( )
return out , err
}
const opListReceiptFilters = "ListReceiptFilters"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See ListReceiptFilters for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListReceiptFilters
2016-06-26 23:07:14 +02:00
func ( c * SES ) ListReceiptFiltersRequest ( input * ListReceiptFiltersInput ) ( req * request . Request , output * ListReceiptFiltersOutput ) {
op := & request . Operation {
Name : opListReceiptFilters ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ListReceiptFiltersInput { }
}
output = & ListReceiptFiltersOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// ListReceiptFilters API operation for Amazon Simple Email Service.
//
2016-07-15 15:49:02 +02:00
// Lists the IP address filters associated with your AWS account.
2016-06-26 23:07:14 +02:00
//
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation ListReceiptFilters for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListReceiptFilters
2016-06-26 23:07:14 +02:00
func ( c * SES ) ListReceiptFilters ( input * ListReceiptFiltersInput ) ( * ListReceiptFiltersOutput , error ) {
req , out := c . ListReceiptFiltersRequest ( input )
err := req . Send ( )
return out , err
}
const opListReceiptRuleSets = "ListReceiptRuleSets"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See ListReceiptRuleSets for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListReceiptRuleSets
2016-06-26 23:07:14 +02:00
func ( c * SES ) ListReceiptRuleSetsRequest ( input * ListReceiptRuleSetsInput ) ( req * request . Request , output * ListReceiptRuleSetsOutput ) {
op := & request . Operation {
Name : opListReceiptRuleSets ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ListReceiptRuleSetsInput { }
}
output = & ListReceiptRuleSetsOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// ListReceiptRuleSets API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation ListReceiptRuleSets for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListReceiptRuleSets
2016-06-26 23:07:14 +02:00
func ( c * SES ) ListReceiptRuleSets ( input * ListReceiptRuleSetsInput ) ( * ListReceiptRuleSetsOutput , error ) {
req , out := c . ListReceiptRuleSetsRequest ( input )
err := req . Send ( )
return out , err
}
const opListVerifiedEmailAddresses = "ListVerifiedEmailAddresses"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See ListVerifiedEmailAddresses for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListVerifiedEmailAddresses
2016-06-26 23:07:14 +02:00
func ( c * SES ) ListVerifiedEmailAddressesRequest ( input * ListVerifiedEmailAddressesInput ) ( req * request . Request , output * ListVerifiedEmailAddressesOutput ) {
op := & request . Operation {
Name : opListVerifiedEmailAddresses ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ListVerifiedEmailAddressesInput { }
}
output = & ListVerifiedEmailAddressesOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// ListVerifiedEmailAddresses API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Returns a list containing all of the email addresses that have been verified.
//
2016-11-19 19:41:01 +01:00
// The ListVerifiedEmailAddresses action is deprecated as of the May 15, 2012
2016-06-26 23:07:14 +02:00
// release of Domain Verification. The ListIdentities action is now preferred.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation ListVerifiedEmailAddresses for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListVerifiedEmailAddresses
2016-06-26 23:07:14 +02:00
func ( c * SES ) ListVerifiedEmailAddresses ( input * ListVerifiedEmailAddressesInput ) ( * ListVerifiedEmailAddressesOutput , error ) {
req , out := c . ListVerifiedEmailAddressesRequest ( input )
err := req . Send ( )
return out , err
}
const opPutIdentityPolicy = "PutIdentityPolicy"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See PutIdentityPolicy for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/PutIdentityPolicy
2016-06-26 23:07:14 +02:00
func ( c * SES ) PutIdentityPolicyRequest ( input * PutIdentityPolicyInput ) ( req * request . Request , output * PutIdentityPolicyOutput ) {
op := & request . Operation {
Name : opPutIdentityPolicy ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & PutIdentityPolicyInput { }
}
output = & PutIdentityPolicyOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// PutIdentityPolicy API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Adds or updates a sending authorization policy for the specified identity
2016-07-15 15:49:02 +02:00
// (an email address or a domain).
2016-06-26 23:07:14 +02:00
//
2016-11-19 19:41:01 +01:00
// This API is for the identity owner only. If you have not verified the identity,
2016-07-15 15:49:02 +02:00
// this API will return an error.
//
2016-11-19 19:41:01 +01:00
// Sending authorization is a feature that enables an identity owner to authorize
2016-07-15 15:49:02 +02:00
// 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).
2016-06-26 23:07:14 +02:00
//
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation PutIdentityPolicy for usage and error information.
//
// Returned Error Codes:
// * InvalidPolicy
// Indicates that the provided policy is invalid. Check the error stack for
// more information about what caused the error.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/PutIdentityPolicy
2016-06-26 23:07:14 +02:00
func ( c * SES ) PutIdentityPolicy ( input * PutIdentityPolicyInput ) ( * PutIdentityPolicyOutput , error ) {
req , out := c . PutIdentityPolicyRequest ( input )
err := req . Send ( )
return out , err
}
const opReorderReceiptRuleSet = "ReorderReceiptRuleSet"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See ReorderReceiptRuleSet for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ReorderReceiptRuleSet
2016-06-26 23:07:14 +02:00
func ( c * SES ) ReorderReceiptRuleSetRequest ( input * ReorderReceiptRuleSetInput ) ( req * request . Request , output * ReorderReceiptRuleSetOutput ) {
op := & request . Operation {
Name : opReorderReceiptRuleSet ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ReorderReceiptRuleSetInput { }
}
output = & ReorderReceiptRuleSetOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// ReorderReceiptRuleSet API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Reorders the receipt rules within a receipt rule set.
//
2016-11-19 19:41:01 +01:00
// All of the rules in the rule set must be represented in this request. That
2016-07-15 15:49:02 +02:00
// is, this API will return an error if the reorder request doesn't explicitly
// position all of the rules.
//
2016-11-19 19:41:01 +01:00
// For information about managing receipt rule sets, see the Amazon SES Developer
2016-07-15 15:49:02 +02:00
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html).
2016-06-26 23:07:14 +02:00
//
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation ReorderReceiptRuleSet for usage and error information.
//
// Returned Error Codes:
// * RuleSetDoesNotExist
// Indicates that the provided receipt rule set does not exist.
//
// * RuleDoesNotExist
// Indicates that the provided receipt rule does not exist.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ReorderReceiptRuleSet
2016-06-26 23:07:14 +02:00
func ( c * SES ) ReorderReceiptRuleSet ( input * ReorderReceiptRuleSetInput ) ( * ReorderReceiptRuleSetOutput , error ) {
req , out := c . ReorderReceiptRuleSetRequest ( input )
err := req . Send ( )
return out , err
}
const opSendBounce = "SendBounce"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See SendBounce for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SendBounce
2016-06-26 23:07:14 +02:00
func ( c * SES ) SendBounceRequest ( input * SendBounceInput ) ( req * request . Request , output * SendBounceOutput ) {
op := & request . Operation {
Name : opSendBounce ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & SendBounceInput { }
}
output = & SendBounceOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// SendBounce API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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.
//
2016-11-19 19:41:01 +01:00
// You cannot use this API to send generic bounces for mail that was not received
2016-07-15 15:49:02 +02:00
// by Amazon SES.
//
2016-11-19 19:41:01 +01:00
// For information about receiving email through Amazon SES, see the Amazon
2016-07-15 15:49:02 +02:00
// SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html).
2016-06-26 23:07:14 +02:00
//
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation SendBounce for usage and error information.
//
// Returned Error Codes:
// * MessageRejected
// Indicates that the action failed, and the message could not be sent. Check
// the error stack for more information about what caused the error.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SendBounce
2016-06-26 23:07:14 +02:00
func ( c * SES ) SendBounce ( input * SendBounceInput ) ( * SendBounceOutput , error ) {
req , out := c . SendBounceRequest ( input )
err := req . Send ( )
return out , err
}
const opSendEmail = "SendEmail"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See SendEmail for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SendEmail
2016-06-26 23:07:14 +02:00
func ( c * SES ) SendEmailRequest ( input * SendEmailInput ) ( req * request . Request , output * SendEmailOutput ) {
op := & request . Operation {
Name : opSendEmail ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & SendEmailInput { }
}
output = & SendEmailOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// SendEmail API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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:
//
2016-11-19 19:41:01 +01:00
// * 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).
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * The total size of the message cannot exceed 10 MB. This includes any
// attachments that are part of the message.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * 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.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * 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).
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation SendEmail for usage and error information.
//
// Returned Error Codes:
// * MessageRejected
// Indicates that the action failed, and the message could not be sent. Check
// the error stack for more information about what caused the error.
//
// * MailFromDomainNotVerifiedException
// Indicates that the message could not be sent because Amazon SES could not
// read the MX record required to use the specified MAIL FROM domain. For information
// about editing the custom MAIL FROM domain settings for an identity, see the
// Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from-edit.html).
//
2016-11-19 19:41:01 +01:00
// * ConfigurationSetDoesNotExist
// Indicates that the configuration set does not exist.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SendEmail
2016-06-26 23:07:14 +02:00
func ( c * SES ) SendEmail ( input * SendEmailInput ) ( * SendEmailOutput , error ) {
req , out := c . SendEmailRequest ( input )
err := req . Send ( )
return out , err
}
const opSendRawEmail = "SendRawEmail"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See SendRawEmail for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SendRawEmail
2016-06-26 23:07:14 +02:00
func ( c * SES ) SendRawEmailRequest ( input * SendRawEmailInput ) ( req * request . Request , output * SendRawEmailOutput ) {
op := & request . Operation {
Name : opSendRawEmail ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & SendRawEmailInput { }
}
output = & SendRawEmailOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// SendRawEmail API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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:
//
2016-11-19 19:41:01 +01:00
// * 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).
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * The total size of the message cannot exceed 10 MB. This includes any
// attachments that are part of the message.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * 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.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * 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.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Amazon SES overrides any Message-ID and Date headers you provide.
2016-07-29 10:11:56 +02:00
//
2016-11-19 19:41:01 +01:00
// * 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).
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * 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:
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// X-SES-SOURCE-ARN
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// X-SES-FROM-ARN
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// X-SES-RETURN-PATH-ARN
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// Do not include these X-headers in the DKIM signature, because they are removed
// by Amazon SES before sending the email.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// 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).
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation SendRawEmail for usage and error information.
//
// Returned Error Codes:
// * MessageRejected
// Indicates that the action failed, and the message could not be sent. Check
// the error stack for more information about what caused the error.
//
// * MailFromDomainNotVerifiedException
// Indicates that the message could not be sent because Amazon SES could not
// read the MX record required to use the specified MAIL FROM domain. For information
// about editing the custom MAIL FROM domain settings for an identity, see the
// Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from-edit.html).
//
2016-11-19 19:41:01 +01:00
// * ConfigurationSetDoesNotExist
// Indicates that the configuration set does not exist.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SendRawEmail
2016-06-26 23:07:14 +02:00
func ( c * SES ) SendRawEmail ( input * SendRawEmailInput ) ( * SendRawEmailOutput , error ) {
req , out := c . SendRawEmailRequest ( input )
err := req . Send ( )
return out , err
}
const opSetActiveReceiptRuleSet = "SetActiveReceiptRuleSet"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See SetActiveReceiptRuleSet for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetActiveReceiptRuleSet
2016-06-26 23:07:14 +02:00
func ( c * SES ) SetActiveReceiptRuleSetRequest ( input * SetActiveReceiptRuleSetInput ) ( req * request . Request , output * SetActiveReceiptRuleSetOutput ) {
op := & request . Operation {
Name : opSetActiveReceiptRuleSet ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & SetActiveReceiptRuleSetInput { }
}
output = & SetActiveReceiptRuleSetOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// SetActiveReceiptRuleSet API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Sets the specified receipt rule set as the active receipt rule set.
//
2016-11-19 19:41:01 +01:00
// To disable your email-receiving through Amazon SES completely, you can call
// this API with RuleSetName set to null.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// For information about managing receipt rule sets, see the Amazon SES Developer
2016-07-15 15:49:02 +02:00
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html).
2016-06-26 23:07:14 +02:00
//
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation SetActiveReceiptRuleSet for usage and error information.
//
// Returned Error Codes:
// * RuleSetDoesNotExist
// Indicates that the provided receipt rule set does not exist.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetActiveReceiptRuleSet
2016-06-26 23:07:14 +02:00
func ( c * SES ) SetActiveReceiptRuleSet ( input * SetActiveReceiptRuleSetInput ) ( * SetActiveReceiptRuleSetOutput , error ) {
req , out := c . SetActiveReceiptRuleSetRequest ( input )
err := req . Send ( )
return out , err
}
const opSetIdentityDkimEnabled = "SetIdentityDkimEnabled"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See SetIdentityDkimEnabled for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityDkimEnabled
2016-06-26 23:07:14 +02:00
func ( c * SES ) SetIdentityDkimEnabledRequest ( input * SetIdentityDkimEnabledInput ) ( req * request . Request , output * SetIdentityDkimEnabledOutput ) {
op := & request . Operation {
Name : opSetIdentityDkimEnabled ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & SetIdentityDkimEnabledInput { }
}
output = & SetIdentityDkimEnabledOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// SetIdentityDkimEnabled API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Enables or disables Easy DKIM signing of email sent from an identity:
//
2016-11-19 19:41:01 +01:00
// * 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).
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * If Easy DKIM signing is enabled for an email address, then Amazon SES
// will DKIM-sign all email sent by that email address.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// 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.
2016-06-26 23:07:14 +02:00
//
// 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).
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation SetIdentityDkimEnabled for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityDkimEnabled
2016-06-26 23:07:14 +02:00
func ( c * SES ) SetIdentityDkimEnabled ( input * SetIdentityDkimEnabledInput ) ( * SetIdentityDkimEnabledOutput , error ) {
req , out := c . SetIdentityDkimEnabledRequest ( input )
err := req . Send ( )
return out , err
}
2016-07-15 15:49:02 +02:00
const opSetIdentityFeedbackForwardingEnabled = "SetIdentityFeedbackForwardingEnabled"
// 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.
//
2016-10-17 23:21:08 +02:00
// See SetIdentityFeedbackForwardingEnabled for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityFeedbackForwardingEnabled
2016-07-15 15:49:02 +02:00
func ( c * SES ) SetIdentityFeedbackForwardingEnabledRequest ( input * SetIdentityFeedbackForwardingEnabledInput ) ( req * request . Request , output * SetIdentityFeedbackForwardingEnabledOutput ) {
op := & request . Operation {
Name : opSetIdentityFeedbackForwardingEnabled ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & SetIdentityFeedbackForwardingEnabledInput { }
}
output = & SetIdentityFeedbackForwardingEnabledOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-07-15 15:49:02 +02:00
return
}
2016-10-17 23:21:08 +02:00
// SetIdentityFeedbackForwardingEnabled API operation for Amazon Simple Email Service.
//
2016-07-15 15:49:02 +02:00
// 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.
//
2016-11-19 19:41:01 +01:00
// Feedback forwarding does not apply to delivery notifications. Delivery notifications
// are only available through Amazon SNS.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// This action is throttled at one request per second.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// 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).
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation SetIdentityFeedbackForwardingEnabled for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityFeedbackForwardingEnabled
2016-07-15 15:49:02 +02:00
func ( c * SES ) SetIdentityFeedbackForwardingEnabled ( input * SetIdentityFeedbackForwardingEnabledInput ) ( * SetIdentityFeedbackForwardingEnabledOutput , error ) {
req , out := c . SetIdentityFeedbackForwardingEnabledRequest ( input )
err := req . Send ( )
return out , err
}
const opSetIdentityHeadersInNotificationsEnabled = "SetIdentityHeadersInNotificationsEnabled"
// 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.
//
2016-10-17 23:21:08 +02:00
// See SetIdentityHeadersInNotificationsEnabled for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityHeadersInNotificationsEnabled
2016-07-15 15:49:02 +02:00
func ( c * SES ) SetIdentityHeadersInNotificationsEnabledRequest ( input * SetIdentityHeadersInNotificationsEnabledInput ) ( req * request . Request , output * SetIdentityHeadersInNotificationsEnabledOutput ) {
op := & request . Operation {
Name : opSetIdentityHeadersInNotificationsEnabled ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & SetIdentityHeadersInNotificationsEnabledInput { }
}
output = & SetIdentityHeadersInNotificationsEnabledOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-07-15 15:49:02 +02:00
return
}
2016-10-17 23:21:08 +02:00
// SetIdentityHeadersInNotificationsEnabled API operation for Amazon Simple Email Service.
//
2016-07-15 15:49:02 +02:00
// 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.
//
2016-11-19 19:41:01 +01:00
// 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).
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation SetIdentityHeadersInNotificationsEnabled for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityHeadersInNotificationsEnabled
2016-07-15 15:49:02 +02:00
func ( c * SES ) SetIdentityHeadersInNotificationsEnabled ( input * SetIdentityHeadersInNotificationsEnabledInput ) ( * SetIdentityHeadersInNotificationsEnabledOutput , error ) {
req , out := c . SetIdentityHeadersInNotificationsEnabledRequest ( input )
err := req . Send ( )
return out , err
}
const opSetIdentityMailFromDomain = "SetIdentityMailFromDomain"
2016-06-26 23:07:14 +02:00
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See SetIdentityMailFromDomain for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityMailFromDomain
2016-07-15 15:49:02 +02:00
func ( c * SES ) SetIdentityMailFromDomainRequest ( input * SetIdentityMailFromDomainInput ) ( req * request . Request , output * SetIdentityMailFromDomainOutput ) {
2016-06-26 23:07:14 +02:00
op := & request . Operation {
2016-07-15 15:49:02 +02:00
Name : opSetIdentityMailFromDomain ,
2016-06-26 23:07:14 +02:00
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
2016-07-15 15:49:02 +02:00
input = & SetIdentityMailFromDomainInput { }
2016-06-26 23:07:14 +02:00
}
2016-07-15 15:49:02 +02:00
output = & SetIdentityMailFromDomainOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// SetIdentityMailFromDomain API operation for Amazon Simple Email Service.
//
2016-07-15 15:49:02 +02:00
// Enables or disables the custom MAIL FROM domain setup for a verified identity
// (an email address or a domain).
2016-06-26 23:07:14 +02:00
//
2016-11-19 19:41:01 +01:00
// 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).
2016-06-26 23:07:14 +02:00
//
2016-11-19 19:41:01 +01:00
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation SetIdentityMailFromDomain for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityMailFromDomain
2016-07-15 15:49:02 +02:00
func ( c * SES ) SetIdentityMailFromDomain ( input * SetIdentityMailFromDomainInput ) ( * SetIdentityMailFromDomainOutput , error ) {
req , out := c . SetIdentityMailFromDomainRequest ( input )
2016-06-26 23:07:14 +02:00
err := req . Send ( )
return out , err
}
const opSetIdentityNotificationTopic = "SetIdentityNotificationTopic"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See SetIdentityNotificationTopic for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityNotificationTopic
2016-06-26 23:07:14 +02:00
func ( c * SES ) SetIdentityNotificationTopicRequest ( input * SetIdentityNotificationTopicInput ) ( req * request . Request , output * SetIdentityNotificationTopicOutput ) {
op := & request . Operation {
Name : opSetIdentityNotificationTopic ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & SetIdentityNotificationTopicInput { }
}
output = & SetIdentityNotificationTopicOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// SetIdentityNotificationTopic API operation for Amazon Simple Email Service.
//
2016-07-15 15:49:02 +02:00
// 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.
2016-06-26 23:07:14 +02:00
//
2016-11-19 19:41:01 +01:00
// Unless feedback forwarding is enabled, you must specify Amazon SNS topics
2016-06-26 23:07:14 +02:00
// for bounce and complaint notifications. For more information, see SetIdentityFeedbackForwardingEnabled.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// This action is throttled at one request per second.
2016-06-26 23:07:14 +02:00
//
// For more information about feedback notification, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html).
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation SetIdentityNotificationTopic for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityNotificationTopic
2016-06-26 23:07:14 +02:00
func ( c * SES ) SetIdentityNotificationTopic ( input * SetIdentityNotificationTopicInput ) ( * SetIdentityNotificationTopicOutput , error ) {
req , out := c . SetIdentityNotificationTopicRequest ( input )
err := req . Send ( )
return out , err
}
const opSetReceiptRulePosition = "SetReceiptRulePosition"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See SetReceiptRulePosition for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetReceiptRulePosition
2016-06-26 23:07:14 +02:00
func ( c * SES ) SetReceiptRulePositionRequest ( input * SetReceiptRulePositionInput ) ( req * request . Request , output * SetReceiptRulePositionOutput ) {
op := & request . Operation {
Name : opSetReceiptRulePosition ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & SetReceiptRulePositionInput { }
}
output = & SetReceiptRulePositionOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// SetReceiptRulePosition API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation SetReceiptRulePosition for usage and error information.
//
// Returned Error Codes:
// * RuleSetDoesNotExist
// Indicates that the provided receipt rule set does not exist.
//
// * RuleDoesNotExist
// Indicates that the provided receipt rule does not exist.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetReceiptRulePosition
2016-06-26 23:07:14 +02:00
func ( c * SES ) SetReceiptRulePosition ( input * SetReceiptRulePositionInput ) ( * SetReceiptRulePositionOutput , error ) {
req , out := c . SetReceiptRulePositionRequest ( input )
err := req . Send ( )
return out , err
}
2016-11-19 19:41:01 +01:00
const opUpdateConfigurationSetEventDestination = "UpdateConfigurationSetEventDestination"
// UpdateConfigurationSetEventDestinationRequest generates a "aws/request.Request" representing the
// client's request for the UpdateConfigurationSetEventDestination operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See UpdateConfigurationSetEventDestination for usage and error information.
//
// 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 UpdateConfigurationSetEventDestination 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 UpdateConfigurationSetEventDestinationRequest method.
// req, resp := client.UpdateConfigurationSetEventDestinationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/UpdateConfigurationSetEventDestination
2016-11-19 19:41:01 +01:00
func ( c * SES ) UpdateConfigurationSetEventDestinationRequest ( input * UpdateConfigurationSetEventDestinationInput ) ( req * request . Request , output * UpdateConfigurationSetEventDestinationOutput ) {
op := & request . Operation {
Name : opUpdateConfigurationSetEventDestination ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & UpdateConfigurationSetEventDestinationInput { }
}
output = & UpdateConfigurationSetEventDestinationOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-11-19 19:41:01 +01:00
return
}
// UpdateConfigurationSetEventDestination API operation for Amazon Simple Email Service.
//
// Updates the event destination of a configuration set.
//
// When you create or update an event destination, you must provide one, and
// only one, destination. The destination can be either Amazon CloudWatch or
// Amazon Kinesis Firehose.
//
// Event destinations are associated with configuration sets, which enable you
// to publish email sending events to Amazon CloudWatch or Amazon Kinesis Firehose.
// For information about using configuration sets, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
//
// This action is throttled at one request per second.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation UpdateConfigurationSetEventDestination for usage and error information.
//
// Returned Error Codes:
// * ConfigurationSetDoesNotExist
// Indicates that the configuration set does not exist.
//
// * EventDestinationDoesNotExist
// Indicates that the event destination does not exist.
//
// * InvalidCloudWatchDestination
// Indicates that the Amazon CloudWatch destination is invalid. See the error
// message for details.
//
// * InvalidFirehoseDestination
// Indicates that the Amazon Kinesis Firehose destination is invalid. See the
// error message for details.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/UpdateConfigurationSetEventDestination
2016-11-19 19:41:01 +01:00
func ( c * SES ) UpdateConfigurationSetEventDestination ( input * UpdateConfigurationSetEventDestinationInput ) ( * UpdateConfigurationSetEventDestinationOutput , error ) {
req , out := c . UpdateConfigurationSetEventDestinationRequest ( input )
err := req . Send ( )
return out , err
}
2016-06-26 23:07:14 +02:00
const opUpdateReceiptRule = "UpdateReceiptRule"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See UpdateReceiptRule for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/UpdateReceiptRule
2016-06-26 23:07:14 +02:00
func ( c * SES ) UpdateReceiptRuleRequest ( input * UpdateReceiptRuleInput ) ( req * request . Request , output * UpdateReceiptRuleOutput ) {
op := & request . Operation {
Name : opUpdateReceiptRule ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & UpdateReceiptRuleInput { }
}
output = & UpdateReceiptRuleOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// UpdateReceiptRule API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation UpdateReceiptRule for usage and error information.
//
// Returned Error Codes:
// * InvalidSnsTopic
// Indicates that the provided Amazon SNS topic is invalid, or that Amazon SES
// could not publish to the topic, possibly due to permissions issues. For information
// about giving permissions, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html).
//
// * InvalidS3Configuration
// Indicates that the provided Amazon S3 bucket or AWS KMS encryption key is
// invalid, or that Amazon SES could not publish to the bucket, possibly due
// to permissions issues. For information about giving permissions, see the
// Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html).
//
// * InvalidLambdaFunction
// Indicates that the provided AWS Lambda function is invalid, or that Amazon
// SES could not execute the provided function, possibly due to permissions
// issues. For information about giving permissions, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html).
//
// * RuleSetDoesNotExist
// Indicates that the provided receipt rule set does not exist.
//
// * RuleDoesNotExist
// Indicates that the provided receipt rule does not exist.
//
// * LimitExceeded
2016-11-19 19:41:01 +01:00
// Indicates that a resource could not be created because of service limits.
// For a list of Amazon SES limits, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/limits.html).
2016-10-17 23:21:08 +02:00
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/UpdateReceiptRule
2016-06-26 23:07:14 +02:00
func ( c * SES ) UpdateReceiptRule ( input * UpdateReceiptRuleInput ) ( * UpdateReceiptRuleOutput , error ) {
req , out := c . UpdateReceiptRuleRequest ( input )
err := req . Send ( )
return out , err
}
const opVerifyDomainDkim = "VerifyDomainDkim"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See VerifyDomainDkim for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyDomainDkim
2016-06-26 23:07:14 +02:00
func ( c * SES ) VerifyDomainDkimRequest ( input * VerifyDomainDkimInput ) ( req * request . Request , output * VerifyDomainDkimOutput ) {
op := & request . Operation {
Name : opVerifyDomainDkim ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & VerifyDomainDkimInput { }
}
output = & VerifyDomainDkimOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// VerifyDomainDkim API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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).
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation VerifyDomainDkim for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyDomainDkim
2016-06-26 23:07:14 +02:00
func ( c * SES ) VerifyDomainDkim ( input * VerifyDomainDkimInput ) ( * VerifyDomainDkimOutput , error ) {
req , out := c . VerifyDomainDkimRequest ( input )
err := req . Send ( )
return out , err
}
const opVerifyDomainIdentity = "VerifyDomainIdentity"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See VerifyDomainIdentity for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyDomainIdentity
2016-06-26 23:07:14 +02:00
func ( c * SES ) VerifyDomainIdentityRequest ( input * VerifyDomainIdentityInput ) ( req * request . Request , output * VerifyDomainIdentityOutput ) {
op := & request . Operation {
Name : opVerifyDomainIdentity ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & VerifyDomainIdentityInput { }
}
output = & VerifyDomainIdentityOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// VerifyDomainIdentity API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Verifies a domain.
//
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation VerifyDomainIdentity for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyDomainIdentity
2016-06-26 23:07:14 +02:00
func ( c * SES ) VerifyDomainIdentity ( input * VerifyDomainIdentityInput ) ( * VerifyDomainIdentityOutput , error ) {
req , out := c . VerifyDomainIdentityRequest ( input )
err := req . Send ( )
return out , err
}
const opVerifyEmailAddress = "VerifyEmailAddress"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See VerifyEmailAddress for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyEmailAddress
2016-06-26 23:07:14 +02:00
func ( c * SES ) VerifyEmailAddressRequest ( input * VerifyEmailAddressInput ) ( req * request . Request , output * VerifyEmailAddressOutput ) {
op := & request . Operation {
Name : opVerifyEmailAddress ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & VerifyEmailAddressInput { }
}
2017-01-23 22:22:31 +01:00
output = & VerifyEmailAddressOutput { }
2016-06-26 23:07:14 +02:00
req = c . newRequest ( op , input , output )
req . Handlers . Unmarshal . Remove ( query . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
return
}
2016-10-17 23:21:08 +02:00
// VerifyEmailAddress API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// Verifies an email address. This action causes a confirmation email message
// to be sent to the specified address.
//
2016-11-19 19:41:01 +01:00
// The VerifyEmailAddress action is deprecated as of the May 15, 2012 release
2016-06-26 23:07:14 +02:00
// of Domain Verification. The VerifyEmailIdentity action is now preferred.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// This action is throttled at one request per second.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation VerifyEmailAddress for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyEmailAddress
2016-06-26 23:07:14 +02:00
func ( c * SES ) VerifyEmailAddress ( input * VerifyEmailAddressInput ) ( * VerifyEmailAddressOutput , error ) {
req , out := c . VerifyEmailAddressRequest ( input )
err := req . Send ( )
return out , err
}
const opVerifyEmailIdentity = "VerifyEmailIdentity"
2016-07-15 15:49:02 +02:00
// 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.
//
2016-10-17 23:21:08 +02:00
// See VerifyEmailIdentity for usage and error information.
//
2016-07-15 15:49:02 +02:00
// 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)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyEmailIdentity
2016-06-26 23:07:14 +02:00
func ( c * SES ) VerifyEmailIdentityRequest ( input * VerifyEmailIdentityInput ) ( req * request . Request , output * VerifyEmailIdentityOutput ) {
op := & request . Operation {
Name : opVerifyEmailIdentity ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & VerifyEmailIdentityInput { }
}
output = & VerifyEmailIdentityOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-06-26 23:07:14 +02:00
return
}
2016-10-17 23:21:08 +02:00
// VerifyEmailIdentity API operation for Amazon Simple Email Service.
//
2016-06-26 23:07:14 +02:00
// 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.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for Amazon Simple Email Service's
// API operation VerifyEmailIdentity for usage and error information.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyEmailIdentity
2016-06-26 23:07:14 +02:00
func ( c * SES ) VerifyEmailIdentity ( input * VerifyEmailIdentityInput ) ( * VerifyEmailIdentityOutput , error ) {
req , out := c . VerifyEmailIdentityRequest ( input )
err := req . Send ( )
return out , err
}
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/AddHeaderAction
2016-06-26 23:07:14 +02:00
type AddHeaderAction struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// HeaderName is a required field
2016-06-26 23:07:14 +02:00
HeaderName * string ` type:"string" required:"true" `
// Must be less than 2048 characters, and must not contain newline characters
// ("\r" or "\n").
2016-10-17 23:21:08 +02:00
//
// HeaderValue is a required field
2016-06-26 23:07:14 +02:00
HeaderValue * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s AddHeaderAction ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s AddHeaderAction ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * AddHeaderAction ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "AddHeaderAction" }
if s . HeaderName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "HeaderName" ) )
}
if s . HeaderValue == nil {
invalidParams . Add ( request . NewErrParamRequired ( "HeaderValue" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetHeaderName sets the HeaderName field's value.
func ( s * AddHeaderAction ) SetHeaderName ( v string ) * AddHeaderAction {
s . HeaderName = & v
return s
}
// SetHeaderValue sets the HeaderValue field's value.
func ( s * AddHeaderAction ) SetHeaderValue ( v string ) * AddHeaderAction {
s . HeaderValue = & v
return s
}
2016-06-26 23:07:14 +02:00
// 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.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/Body
2016-06-26 23:07:14 +02:00
type Body struct {
_ struct { } ` type:"structure" `
// 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" `
}
// String returns the string representation
func ( s Body ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Body ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * Body ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "Body" }
if s . Html != nil {
if err := s . Html . Validate ( ) ; err != nil {
invalidParams . AddNested ( "Html" , err . ( request . ErrInvalidParams ) )
}
}
if s . Text != nil {
if err := s . Text . Validate ( ) ; err != nil {
invalidParams . AddNested ( "Text" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetHtml sets the Html field's value.
func ( s * Body ) SetHtml ( v * Content ) * Body {
s . Html = v
return s
}
// SetText sets the Text field's value.
func ( s * Body ) SetText ( v * Content ) * Body {
s . Text = v
return s
}
2016-06-26 23:07:14 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/BounceAction
2016-06-26 23:07:14 +02:00
type BounceAction struct {
_ struct { } ` type:"structure" `
// Human-readable text to include in the bounce message.
2016-10-17 23:21:08 +02:00
//
// Message is a required field
2016-06-26 23:07:14 +02:00
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.
2016-10-17 23:21:08 +02:00
//
// Sender is a required field
2016-06-26 23:07:14 +02:00
Sender * string ` type:"string" required:"true" `
// The SMTP reply code, as defined by RFC 5321 (https://tools.ietf.org/html/rfc5321).
2016-10-17 23:21:08 +02:00
//
// SmtpReplyCode is a required field
2016-06-26 23:07:14 +02:00
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" `
}
// String returns the string representation
func ( s BounceAction ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s BounceAction ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * BounceAction ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "BounceAction" }
if s . Message == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Message" ) )
}
if s . Sender == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Sender" ) )
}
if s . SmtpReplyCode == nil {
invalidParams . Add ( request . NewErrParamRequired ( "SmtpReplyCode" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetMessage sets the Message field's value.
func ( s * BounceAction ) SetMessage ( v string ) * BounceAction {
s . Message = & v
return s
}
// SetSender sets the Sender field's value.
func ( s * BounceAction ) SetSender ( v string ) * BounceAction {
s . Sender = & v
return s
}
// SetSmtpReplyCode sets the SmtpReplyCode field's value.
func ( s * BounceAction ) SetSmtpReplyCode ( v string ) * BounceAction {
s . SmtpReplyCode = & v
return s
}
// SetStatusCode sets the StatusCode field's value.
func ( s * BounceAction ) SetStatusCode ( v string ) * BounceAction {
s . StatusCode = & v
return s
}
// SetTopicArn sets the TopicArn field's value.
func ( s * BounceAction ) SetTopicArn ( v string ) * BounceAction {
s . TopicArn = & v
return s
}
2016-06-26 23:07:14 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/BouncedRecipientInfo
2016-06-26 23:07:14 +02:00
type BouncedRecipientInfo struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// Recipient is a required field
2016-06-26 23:07:14 +02:00
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" `
}
// String returns the string representation
func ( s BouncedRecipientInfo ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s BouncedRecipientInfo ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * BouncedRecipientInfo ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "BouncedRecipientInfo" }
if s . Recipient == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Recipient" ) )
}
if s . RecipientDsnFields != nil {
if err := s . RecipientDsnFields . Validate ( ) ; err != nil {
invalidParams . AddNested ( "RecipientDsnFields" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetBounceType sets the BounceType field's value.
func ( s * BouncedRecipientInfo ) SetBounceType ( v string ) * BouncedRecipientInfo {
s . BounceType = & v
return s
}
// SetRecipient sets the Recipient field's value.
func ( s * BouncedRecipientInfo ) SetRecipient ( v string ) * BouncedRecipientInfo {
s . Recipient = & v
return s
}
// SetRecipientArn sets the RecipientArn field's value.
func ( s * BouncedRecipientInfo ) SetRecipientArn ( v string ) * BouncedRecipientInfo {
s . RecipientArn = & v
return s
}
// SetRecipientDsnFields sets the RecipientDsnFields field's value.
func ( s * BouncedRecipientInfo ) SetRecipientDsnFields ( v * RecipientDsnFields ) * BouncedRecipientInfo {
s . RecipientDsnFields = v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CloneReceiptRuleSetRequest
2016-06-26 23:07:14 +02:00
type CloneReceiptRuleSetInput struct {
_ struct { } ` type:"structure" `
// The name of the rule set to clone.
2016-10-17 23:21:08 +02:00
//
// OriginalRuleSetName is a required field
2016-06-26 23:07:14 +02:00
OriginalRuleSetName * string ` type:"string" required:"true" `
// The name of the rule set to create. The name must:
//
2016-11-19 19:41:01 +01:00
// * Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores
// (_), or dashes (-).
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Start and end with a letter or number.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Contain less than 64 characters.
2016-10-17 23:21:08 +02:00
//
// RuleSetName is a required field
2016-06-26 23:07:14 +02:00
RuleSetName * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s CloneReceiptRuleSetInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CloneReceiptRuleSetInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * CloneReceiptRuleSetInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CloneReceiptRuleSetInput" }
if s . OriginalRuleSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "OriginalRuleSetName" ) )
}
if s . RuleSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RuleSetName" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetOriginalRuleSetName sets the OriginalRuleSetName field's value.
func ( s * CloneReceiptRuleSetInput ) SetOriginalRuleSetName ( v string ) * CloneReceiptRuleSetInput {
s . OriginalRuleSetName = & v
return s
}
// SetRuleSetName sets the RuleSetName field's value.
func ( s * CloneReceiptRuleSetInput ) SetRuleSetName ( v string ) * CloneReceiptRuleSetInput {
s . RuleSetName = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CloneReceiptRuleSetResponse
2016-06-26 23:07:14 +02:00
type CloneReceiptRuleSetOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s CloneReceiptRuleSetOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CloneReceiptRuleSetOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// Contains information associated with an Amazon CloudWatch event destination
// to which email sending events are published.
2016-06-26 23:07:14 +02:00
//
2016-11-19 19:41:01 +01:00
// Event destinations, such as Amazon CloudWatch, are associated with configuration
// sets, which enable you to publish email sending events. For information about
// using configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CloudWatchDestination
2016-11-19 19:41:01 +01:00
type CloudWatchDestination struct {
2016-06-26 23:07:14 +02:00
_ struct { } ` type:"structure" `
2016-11-19 19:41:01 +01:00
// A list of dimensions upon which to categorize your emails when you publish
// email sending events to Amazon CloudWatch.
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// DimensionConfigurations is a required field
DimensionConfigurations [ ] * CloudWatchDimensionConfiguration ` type:"list" required:"true" `
2016-06-26 23:07:14 +02:00
}
// String returns the string representation
2016-11-19 19:41:01 +01:00
func ( s CloudWatchDestination ) String ( ) string {
2016-06-26 23:07:14 +02:00
return awsutil . Prettify ( s )
}
// GoString returns the string representation
2016-11-19 19:41:01 +01:00
func ( s CloudWatchDestination ) GoString ( ) string {
2016-06-26 23:07:14 +02:00
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
2016-11-19 19:41:01 +01:00
func ( s * CloudWatchDestination ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CloudWatchDestination" }
if s . DimensionConfigurations == nil {
invalidParams . Add ( request . NewErrParamRequired ( "DimensionConfigurations" ) )
}
if s . DimensionConfigurations != nil {
for i , v := range s . DimensionConfigurations {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "DimensionConfigurations" , i ) , err . ( request . ErrInvalidParams ) )
}
}
2016-07-15 15:49:02 +02:00
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetDimensionConfigurations sets the DimensionConfigurations field's value.
func ( s * CloudWatchDestination ) SetDimensionConfigurations ( v [ ] * CloudWatchDimensionConfiguration ) * CloudWatchDestination {
s . DimensionConfigurations = v
return s
}
// Contains the dimension configuration to use when you publish email sending
// events to Amazon CloudWatch.
//
// For information about publishing email sending events to Amazon CloudWatch,
// see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CloudWatchDimensionConfiguration
2016-11-19 19:41:01 +01:00
type CloudWatchDimensionConfiguration struct {
2016-06-26 23:07:14 +02:00
_ struct { } ` type:"structure" `
2016-11-19 19:41:01 +01:00
// The default value of the dimension that is published to Amazon CloudWatch
// if you do not provide the value of the dimension when you send an email.
// The default value must:
2016-10-17 23:21:08 +02:00
//
2016-11-19 19:41:01 +01:00
// * Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_),
// or dashes (-).
//
// * Contain less than 256 characters.
//
// DefaultDimensionValue is a required field
DefaultDimensionValue * string ` type:"string" required:"true" `
// The name of an Amazon CloudWatch dimension associated with an email sending
// metric. The name must:
//
// * Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_),
// or dashes (-).
//
// * Contain less than 256 characters.
//
// DimensionName is a required field
DimensionName * string ` type:"string" required:"true" `
// The place where Amazon SES finds the value of a dimension to publish to Amazon
// CloudWatch. If you want Amazon SES to use the message tags that you specify
// using an X-SES-MESSAGE-TAGS header or a parameter to the SendEmail/SendRawEmail
// API, choose messageTag. If you want Amazon SES to use your own email headers,
// choose emailHeader.
//
// DimensionValueSource is a required field
DimensionValueSource * string ` type:"string" required:"true" enum:"DimensionValueSource" `
2016-06-26 23:07:14 +02:00
}
// String returns the string representation
2016-11-19 19:41:01 +01:00
func ( s CloudWatchDimensionConfiguration ) String ( ) string {
2016-06-26 23:07:14 +02:00
return awsutil . Prettify ( s )
}
// GoString returns the string representation
2016-11-19 19:41:01 +01:00
func ( s CloudWatchDimensionConfiguration ) GoString ( ) string {
2016-06-26 23:07:14 +02:00
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
2016-11-19 19:41:01 +01:00
func ( s * CloudWatchDimensionConfiguration ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CloudWatchDimensionConfiguration" }
if s . DefaultDimensionValue == nil {
invalidParams . Add ( request . NewErrParamRequired ( "DefaultDimensionValue" ) )
}
if s . DimensionName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "DimensionName" ) )
}
if s . DimensionValueSource == nil {
invalidParams . Add ( request . NewErrParamRequired ( "DimensionValueSource" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetDefaultDimensionValue sets the DefaultDimensionValue field's value.
func ( s * CloudWatchDimensionConfiguration ) SetDefaultDimensionValue ( v string ) * CloudWatchDimensionConfiguration {
s . DefaultDimensionValue = & v
return s
}
// SetDimensionName sets the DimensionName field's value.
func ( s * CloudWatchDimensionConfiguration ) SetDimensionName ( v string ) * CloudWatchDimensionConfiguration {
s . DimensionName = & v
return s
}
// SetDimensionValueSource sets the DimensionValueSource field's value.
func ( s * CloudWatchDimensionConfiguration ) SetDimensionValueSource ( v string ) * CloudWatchDimensionConfiguration {
s . DimensionValueSource = & v
return s
}
// The name of the configuration set.
//
// Configuration sets enable you to publish email sending events. For information
// about using configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ConfigurationSet
2016-11-19 19:41:01 +01:00
type ConfigurationSet struct {
_ struct { } ` type:"structure" `
// The name of the configuration set. The name must:
//
// * Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_),
// or dashes (-).
//
// * Contain less than 64 characters.
//
// Name is a required field
Name * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s ConfigurationSet ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ConfigurationSet ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ConfigurationSet ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ConfigurationSet" }
if s . Name == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Name" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetName sets the Name field's value.
func ( s * ConfigurationSet ) SetName ( v string ) * ConfigurationSet {
s . Name = & v
return s
}
// 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.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/Content
2016-11-19 19:41:01 +01:00
type Content struct {
_ struct { } ` type:"structure" `
// The character set of the content.
Charset * string ` type:"string" `
// The textual data of the content.
//
// Data is a required field
Data * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s Content ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Content ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * Content ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "Content" }
if s . Data == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Data" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetCharset sets the Charset field's value.
func ( s * Content ) SetCharset ( v string ) * Content {
s . Charset = & v
return s
}
// SetData sets the Data field's value.
func ( s * Content ) SetData ( v string ) * Content {
s . Data = & v
return s
}
// Represents a request to create a configuration set event destination. A configuration
// set event destination, which can be either Amazon CloudWatch or Amazon Kinesis
// Firehose, describes an AWS service in which Amazon SES publishes the email
// sending events associated with a configuration set. For information about
// using configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateConfigurationSetEventDestinationRequest
2016-11-19 19:41:01 +01:00
type CreateConfigurationSetEventDestinationInput struct {
_ struct { } ` type:"structure" `
// The name of the configuration set to which to apply the event destination.
//
// ConfigurationSetName is a required field
ConfigurationSetName * string ` type:"string" required:"true" `
// An object that describes the AWS service to which Amazon SES will publish
// the email sending events associated with the specified configuration set.
//
// EventDestination is a required field
EventDestination * EventDestination ` type:"structure" required:"true" `
}
// String returns the string representation
func ( s CreateConfigurationSetEventDestinationInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateConfigurationSetEventDestinationInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * CreateConfigurationSetEventDestinationInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CreateConfigurationSetEventDestinationInput" }
if s . ConfigurationSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ConfigurationSetName" ) )
}
if s . EventDestination == nil {
invalidParams . Add ( request . NewErrParamRequired ( "EventDestination" ) )
}
if s . EventDestination != nil {
if err := s . EventDestination . Validate ( ) ; err != nil {
invalidParams . AddNested ( "EventDestination" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetConfigurationSetName sets the ConfigurationSetName field's value.
func ( s * CreateConfigurationSetEventDestinationInput ) SetConfigurationSetName ( v string ) * CreateConfigurationSetEventDestinationInput {
s . ConfigurationSetName = & v
return s
}
// SetEventDestination sets the EventDestination field's value.
func ( s * CreateConfigurationSetEventDestinationInput ) SetEventDestination ( v * EventDestination ) * CreateConfigurationSetEventDestinationInput {
s . EventDestination = v
return s
}
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateConfigurationSetEventDestinationResponse
2016-11-19 19:41:01 +01:00
type CreateConfigurationSetEventDestinationOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s CreateConfigurationSetEventDestinationOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateConfigurationSetEventDestinationOutput ) GoString ( ) string {
return s . String ( )
}
// Represents a request to create a configuration set. Configuration sets enable
// you to publish email sending events. For information about using configuration
// sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateConfigurationSetRequest
2016-11-19 19:41:01 +01:00
type CreateConfigurationSetInput struct {
_ struct { } ` type:"structure" `
// A data structure that contains the name of the configuration set.
//
// ConfigurationSet is a required field
ConfigurationSet * ConfigurationSet ` type:"structure" required:"true" `
}
// String returns the string representation
func ( s CreateConfigurationSetInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateConfigurationSetInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * CreateConfigurationSetInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CreateConfigurationSetInput" }
if s . ConfigurationSet == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ConfigurationSet" ) )
}
if s . ConfigurationSet != nil {
if err := s . ConfigurationSet . Validate ( ) ; err != nil {
invalidParams . AddNested ( "ConfigurationSet" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetConfigurationSet sets the ConfigurationSet field's value.
func ( s * CreateConfigurationSetInput ) SetConfigurationSet ( v * ConfigurationSet ) * CreateConfigurationSetInput {
s . ConfigurationSet = v
return s
}
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateConfigurationSetResponse
2016-11-19 19:41:01 +01:00
type CreateConfigurationSetOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s CreateConfigurationSetOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateConfigurationSetOutput ) GoString ( ) string {
return s . String ( )
}
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptFilterRequest
2016-11-19 19:41:01 +01:00
type CreateReceiptFilterInput struct {
_ struct { } ` type:"structure" `
// 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 is a required field
Filter * ReceiptFilter ` type:"structure" required:"true" `
}
// String returns the string representation
func ( s CreateReceiptFilterInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateReceiptFilterInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * CreateReceiptFilterInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CreateReceiptFilterInput" }
2016-07-15 15:49:02 +02:00
if s . Filter == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Filter" ) )
}
if s . Filter != nil {
if err := s . Filter . Validate ( ) ; err != nil {
invalidParams . AddNested ( "Filter" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetFilter sets the Filter field's value.
func ( s * CreateReceiptFilterInput ) SetFilter ( v * ReceiptFilter ) * CreateReceiptFilterInput {
s . Filter = v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptFilterResponse
2016-06-26 23:07:14 +02:00
type CreateReceiptFilterOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s CreateReceiptFilterOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateReceiptFilterOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptRuleRequest
2016-06-26 23:07:14 +02:00
type CreateReceiptRuleInput struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// Rule is a required field
2016-06-26 23:07:14 +02:00
Rule * ReceiptRule ` type:"structure" required:"true" `
// The name of the rule set to which to add the rule.
2016-10-17 23:21:08 +02:00
//
// RuleSetName is a required field
2016-06-26 23:07:14 +02:00
RuleSetName * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s CreateReceiptRuleInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateReceiptRuleInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * CreateReceiptRuleInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CreateReceiptRuleInput" }
if s . Rule == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Rule" ) )
}
if s . RuleSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RuleSetName" ) )
}
if s . Rule != nil {
if err := s . Rule . Validate ( ) ; err != nil {
invalidParams . AddNested ( "Rule" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetAfter sets the After field's value.
func ( s * CreateReceiptRuleInput ) SetAfter ( v string ) * CreateReceiptRuleInput {
s . After = & v
return s
}
// SetRule sets the Rule field's value.
func ( s * CreateReceiptRuleInput ) SetRule ( v * ReceiptRule ) * CreateReceiptRuleInput {
s . Rule = v
return s
}
// SetRuleSetName sets the RuleSetName field's value.
func ( s * CreateReceiptRuleInput ) SetRuleSetName ( v string ) * CreateReceiptRuleInput {
s . RuleSetName = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptRuleResponse
2016-06-26 23:07:14 +02:00
type CreateReceiptRuleOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s CreateReceiptRuleOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateReceiptRuleOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptRuleSetRequest
2016-06-26 23:07:14 +02:00
type CreateReceiptRuleSetInput struct {
_ struct { } ` type:"structure" `
// The name of the rule set to create. The name must:
//
2016-11-19 19:41:01 +01:00
// * Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores
// (_), or dashes (-).
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Start and end with a letter or number.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Contain less than 64 characters.
2016-10-17 23:21:08 +02:00
//
// RuleSetName is a required field
2016-06-26 23:07:14 +02:00
RuleSetName * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s CreateReceiptRuleSetInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateReceiptRuleSetInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * CreateReceiptRuleSetInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CreateReceiptRuleSetInput" }
if s . RuleSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RuleSetName" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetRuleSetName sets the RuleSetName field's value.
func ( s * CreateReceiptRuleSetInput ) SetRuleSetName ( v string ) * CreateReceiptRuleSetInput {
s . RuleSetName = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptRuleSetResponse
2016-06-26 23:07:14 +02:00
type CreateReceiptRuleSetOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s CreateReceiptRuleSetOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateReceiptRuleSetOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// Represents a request to delete a configuration set event destination. Configuration
// set event destinations are associated with configuration sets, which enable
// you to publish email sending events. For information about using configuration
// sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteConfigurationSetEventDestinationRequest
2016-11-19 19:41:01 +01:00
type DeleteConfigurationSetEventDestinationInput struct {
_ struct { } ` type:"structure" `
// The name of the configuration set from which to delete the event destination.
//
// ConfigurationSetName is a required field
ConfigurationSetName * string ` type:"string" required:"true" `
// The name of the event destination to delete.
//
// EventDestinationName is a required field
EventDestinationName * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteConfigurationSetEventDestinationInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteConfigurationSetEventDestinationInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DeleteConfigurationSetEventDestinationInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteConfigurationSetEventDestinationInput" }
if s . ConfigurationSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ConfigurationSetName" ) )
}
if s . EventDestinationName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "EventDestinationName" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetConfigurationSetName sets the ConfigurationSetName field's value.
func ( s * DeleteConfigurationSetEventDestinationInput ) SetConfigurationSetName ( v string ) * DeleteConfigurationSetEventDestinationInput {
s . ConfigurationSetName = & v
return s
}
// SetEventDestinationName sets the EventDestinationName field's value.
func ( s * DeleteConfigurationSetEventDestinationInput ) SetEventDestinationName ( v string ) * DeleteConfigurationSetEventDestinationInput {
s . EventDestinationName = & v
return s
}
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteConfigurationSetEventDestinationResponse
2016-11-19 19:41:01 +01:00
type DeleteConfigurationSetEventDestinationOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DeleteConfigurationSetEventDestinationOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteConfigurationSetEventDestinationOutput ) GoString ( ) string {
return s . String ( )
}
// Represents a request to delete a configuration set. Configuration sets enable
// you to publish email sending events. For information about using configuration
// sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteConfigurationSetRequest
2016-11-19 19:41:01 +01:00
type DeleteConfigurationSetInput struct {
_ struct { } ` type:"structure" `
// The name of the configuration set to delete.
//
// ConfigurationSetName is a required field
ConfigurationSetName * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteConfigurationSetInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteConfigurationSetInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DeleteConfigurationSetInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteConfigurationSetInput" }
if s . ConfigurationSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ConfigurationSetName" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetConfigurationSetName sets the ConfigurationSetName field's value.
func ( s * DeleteConfigurationSetInput ) SetConfigurationSetName ( v string ) * DeleteConfigurationSetInput {
s . ConfigurationSetName = & v
return s
}
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteConfigurationSetResponse
2016-11-19 19:41:01 +01:00
type DeleteConfigurationSetOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DeleteConfigurationSetOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteConfigurationSetOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Represents a request to delete one of your Amazon SES identities (an email
// address or domain).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteIdentityRequest
2016-06-26 23:07:14 +02:00
type DeleteIdentityInput struct {
_ struct { } ` type:"structure" `
// The identity to be removed from the list of identities for the AWS Account.
2016-10-17 23:21:08 +02:00
//
// Identity is a required field
2016-06-26 23:07:14 +02:00
Identity * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteIdentityInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteIdentityInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DeleteIdentityInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteIdentityInput" }
if s . Identity == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Identity" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetIdentity sets the Identity field's value.
func ( s * DeleteIdentityInput ) SetIdentity ( v string ) * DeleteIdentityInput {
s . Identity = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteIdentityResponse
2016-06-26 23:07:14 +02:00
type DeleteIdentityOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DeleteIdentityOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteIdentityOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteIdentityPolicyRequest
2016-06-26 23:07:14 +02:00
type DeleteIdentityPolicyInput struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// Identity is a required field
2016-06-26 23:07:14 +02:00
Identity * string ` type:"string" required:"true" `
// The name of the policy to be deleted.
2016-10-17 23:21:08 +02:00
//
// PolicyName is a required field
2016-06-26 23:07:14 +02:00
PolicyName * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteIdentityPolicyInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteIdentityPolicyInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DeleteIdentityPolicyInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteIdentityPolicyInput" }
if s . Identity == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Identity" ) )
}
if s . PolicyName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "PolicyName" ) )
}
if s . PolicyName != nil && len ( * s . PolicyName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "PolicyName" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetIdentity sets the Identity field's value.
func ( s * DeleteIdentityPolicyInput ) SetIdentity ( v string ) * DeleteIdentityPolicyInput {
s . Identity = & v
return s
}
// SetPolicyName sets the PolicyName field's value.
func ( s * DeleteIdentityPolicyInput ) SetPolicyName ( v string ) * DeleteIdentityPolicyInput {
s . PolicyName = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteIdentityPolicyResponse
2016-06-26 23:07:14 +02:00
type DeleteIdentityPolicyOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DeleteIdentityPolicyOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteIdentityPolicyOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptFilterRequest
2016-06-26 23:07:14 +02:00
type DeleteReceiptFilterInput struct {
_ struct { } ` type:"structure" `
// The name of the IP address filter to delete.
2016-10-17 23:21:08 +02:00
//
// FilterName is a required field
2016-06-26 23:07:14 +02:00
FilterName * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteReceiptFilterInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteReceiptFilterInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DeleteReceiptFilterInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteReceiptFilterInput" }
if s . FilterName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "FilterName" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetFilterName sets the FilterName field's value.
func ( s * DeleteReceiptFilterInput ) SetFilterName ( v string ) * DeleteReceiptFilterInput {
s . FilterName = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptFilterResponse
2016-06-26 23:07:14 +02:00
type DeleteReceiptFilterOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DeleteReceiptFilterOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteReceiptFilterOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptRuleRequest
2016-06-26 23:07:14 +02:00
type DeleteReceiptRuleInput struct {
_ struct { } ` type:"structure" `
// The name of the receipt rule to delete.
2016-10-17 23:21:08 +02:00
//
// RuleName is a required field
2016-06-26 23:07:14 +02:00
RuleName * string ` type:"string" required:"true" `
// The name of the receipt rule set that contains the receipt rule to delete.
2016-10-17 23:21:08 +02:00
//
// RuleSetName is a required field
2016-06-26 23:07:14 +02:00
RuleSetName * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteReceiptRuleInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteReceiptRuleInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DeleteReceiptRuleInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteReceiptRuleInput" }
if s . RuleName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RuleName" ) )
}
if s . RuleSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RuleSetName" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetRuleName sets the RuleName field's value.
func ( s * DeleteReceiptRuleInput ) SetRuleName ( v string ) * DeleteReceiptRuleInput {
s . RuleName = & v
return s
}
// SetRuleSetName sets the RuleSetName field's value.
func ( s * DeleteReceiptRuleInput ) SetRuleSetName ( v string ) * DeleteReceiptRuleInput {
s . RuleSetName = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptRuleResponse
2016-06-26 23:07:14 +02:00
type DeleteReceiptRuleOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DeleteReceiptRuleOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteReceiptRuleOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptRuleSetRequest
2016-06-26 23:07:14 +02:00
type DeleteReceiptRuleSetInput struct {
_ struct { } ` type:"structure" `
// The name of the receipt rule set to delete.
2016-10-17 23:21:08 +02:00
//
// RuleSetName is a required field
2016-06-26 23:07:14 +02:00
RuleSetName * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteReceiptRuleSetInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteReceiptRuleSetInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DeleteReceiptRuleSetInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteReceiptRuleSetInput" }
if s . RuleSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RuleSetName" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetRuleSetName sets the RuleSetName field's value.
func ( s * DeleteReceiptRuleSetInput ) SetRuleSetName ( v string ) * DeleteReceiptRuleSetInput {
s . RuleSetName = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptRuleSetResponse
2016-06-26 23:07:14 +02:00
type DeleteReceiptRuleSetOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DeleteReceiptRuleSetOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteReceiptRuleSetOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Represents a request to delete an email address from the list of email addresses
// you have attempted to verify under your AWS account.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteVerifiedEmailAddressRequest
2016-06-26 23:07:14 +02:00
type DeleteVerifiedEmailAddressInput struct {
_ struct { } ` type:"structure" `
// An email address to be removed from the list of verified addresses.
2016-10-17 23:21:08 +02:00
//
// EmailAddress is a required field
2016-06-26 23:07:14 +02:00
EmailAddress * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteVerifiedEmailAddressInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteVerifiedEmailAddressInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DeleteVerifiedEmailAddressInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteVerifiedEmailAddressInput" }
if s . EmailAddress == nil {
invalidParams . Add ( request . NewErrParamRequired ( "EmailAddress" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEmailAddress sets the EmailAddress field's value.
func ( s * DeleteVerifiedEmailAddressInput ) SetEmailAddress ( v string ) * DeleteVerifiedEmailAddressInput {
s . EmailAddress = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteVerifiedEmailAddressOutput
2016-06-26 23:07:14 +02:00
type DeleteVerifiedEmailAddressOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DeleteVerifiedEmailAddressOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteVerifiedEmailAddressOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeActiveReceiptRuleSetRequest
2016-06-26 23:07:14 +02:00
type DescribeActiveReceiptRuleSetInput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DescribeActiveReceiptRuleSetInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeActiveReceiptRuleSetInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Represents the metadata and receipt rules for the receipt rule set that is
// currently active.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeActiveReceiptRuleSetResponse
2016-06-26 23:07:14 +02:00
type DescribeActiveReceiptRuleSetOutput struct {
_ struct { } ` type:"structure" `
// 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" `
}
// String returns the string representation
func ( s DescribeActiveReceiptRuleSetOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeActiveReceiptRuleSetOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetMetadata sets the Metadata field's value.
func ( s * DescribeActiveReceiptRuleSetOutput ) SetMetadata ( v * ReceiptRuleSetMetadata ) * DescribeActiveReceiptRuleSetOutput {
s . Metadata = v
return s
}
// SetRules sets the Rules field's value.
func ( s * DescribeActiveReceiptRuleSetOutput ) SetRules ( v [ ] * ReceiptRule ) * DescribeActiveReceiptRuleSetOutput {
s . Rules = v
return s
}
// Represents a request to return the details of a configuration set. Configuration
// sets enable you to publish email sending events. For information about using
// configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeConfigurationSetRequest
2016-11-19 19:41:01 +01:00
type DescribeConfigurationSetInput struct {
_ struct { } ` type:"structure" `
// A list of configuration set attributes to return.
ConfigurationSetAttributeNames [ ] * string ` type:"list" `
// The name of the configuration set to describe.
//
// ConfigurationSetName is a required field
ConfigurationSetName * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s DescribeConfigurationSetInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeConfigurationSetInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DescribeConfigurationSetInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeConfigurationSetInput" }
if s . ConfigurationSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ConfigurationSetName" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetConfigurationSetAttributeNames sets the ConfigurationSetAttributeNames field's value.
func ( s * DescribeConfigurationSetInput ) SetConfigurationSetAttributeNames ( v [ ] * string ) * DescribeConfigurationSetInput {
s . ConfigurationSetAttributeNames = v
return s
}
// SetConfigurationSetName sets the ConfigurationSetName field's value.
func ( s * DescribeConfigurationSetInput ) SetConfigurationSetName ( v string ) * DescribeConfigurationSetInput {
s . ConfigurationSetName = & v
return s
}
// Represents the details of a configuration set. Configuration sets enable
// you to publish email sending events. For information about using configuration
// sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeConfigurationSetResponse
2016-11-19 19:41:01 +01:00
type DescribeConfigurationSetOutput struct {
_ struct { } ` type:"structure" `
// The configuration set object associated with the specified configuration
// set.
ConfigurationSet * ConfigurationSet ` type:"structure" `
// A list of event destinations associated with the configuration set.
EventDestinations [ ] * EventDestination ` type:"list" `
}
// String returns the string representation
func ( s DescribeConfigurationSetOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeConfigurationSetOutput ) GoString ( ) string {
return s . String ( )
}
// SetConfigurationSet sets the ConfigurationSet field's value.
func ( s * DescribeConfigurationSetOutput ) SetConfigurationSet ( v * ConfigurationSet ) * DescribeConfigurationSetOutput {
s . ConfigurationSet = v
return s
}
// SetEventDestinations sets the EventDestinations field's value.
func ( s * DescribeConfigurationSetOutput ) SetEventDestinations ( v [ ] * EventDestination ) * DescribeConfigurationSetOutput {
s . EventDestinations = v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeReceiptRuleRequest
2016-06-26 23:07:14 +02:00
type DescribeReceiptRuleInput struct {
_ struct { } ` type:"structure" `
// The name of the receipt rule.
2016-10-17 23:21:08 +02:00
//
// RuleName is a required field
2016-06-26 23:07:14 +02:00
RuleName * string ` type:"string" required:"true" `
// The name of the receipt rule set to which the receipt rule belongs.
2016-10-17 23:21:08 +02:00
//
// RuleSetName is a required field
2016-06-26 23:07:14 +02:00
RuleSetName * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s DescribeReceiptRuleInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeReceiptRuleInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DescribeReceiptRuleInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeReceiptRuleInput" }
if s . RuleName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RuleName" ) )
}
if s . RuleSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RuleSetName" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetRuleName sets the RuleName field's value.
func ( s * DescribeReceiptRuleInput ) SetRuleName ( v string ) * DescribeReceiptRuleInput {
s . RuleName = & v
return s
}
// SetRuleSetName sets the RuleSetName field's value.
func ( s * DescribeReceiptRuleInput ) SetRuleSetName ( v string ) * DescribeReceiptRuleInput {
s . RuleSetName = & v
return s
}
2016-07-15 15:49:02 +02:00
// Represents the details of a receipt rule.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeReceiptRuleResponse
2016-06-26 23:07:14 +02:00
type DescribeReceiptRuleOutput struct {
_ struct { } ` type:"structure" `
// 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" `
}
// String returns the string representation
func ( s DescribeReceiptRuleOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeReceiptRuleOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetRule sets the Rule field's value.
func ( s * DescribeReceiptRuleOutput ) SetRule ( v * ReceiptRule ) * DescribeReceiptRuleOutput {
s . Rule = v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeReceiptRuleSetRequest
2016-06-26 23:07:14 +02:00
type DescribeReceiptRuleSetInput struct {
_ struct { } ` type:"structure" `
// The name of the receipt rule set to describe.
2016-10-17 23:21:08 +02:00
//
// RuleSetName is a required field
2016-06-26 23:07:14 +02:00
RuleSetName * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s DescribeReceiptRuleSetInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeReceiptRuleSetInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DescribeReceiptRuleSetInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeReceiptRuleSetInput" }
if s . RuleSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RuleSetName" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetRuleSetName sets the RuleSetName field's value.
func ( s * DescribeReceiptRuleSetInput ) SetRuleSetName ( v string ) * DescribeReceiptRuleSetInput {
s . RuleSetName = & v
return s
}
2016-07-15 15:49:02 +02:00
// Represents the details of the specified receipt rule set.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeReceiptRuleSetResponse
2016-06-26 23:07:14 +02:00
type DescribeReceiptRuleSetOutput struct {
_ struct { } ` type:"structure" `
// 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" `
}
// String returns the string representation
func ( s DescribeReceiptRuleSetOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeReceiptRuleSetOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetMetadata sets the Metadata field's value.
func ( s * DescribeReceiptRuleSetOutput ) SetMetadata ( v * ReceiptRuleSetMetadata ) * DescribeReceiptRuleSetOutput {
s . Metadata = v
return s
}
// SetRules sets the Rules field's value.
func ( s * DescribeReceiptRuleSetOutput ) SetRules ( v [ ] * ReceiptRule ) * DescribeReceiptRuleSetOutput {
s . Rules = v
return s
}
2016-06-26 23:07:14 +02:00
// Represents the destination of the message, consisting of To:, CC:, and BCC:
// fields.
//
2016-11-19 19:41:01 +01:00
// By default, the string must be 7-bit ASCII. If the text must contain any
2016-06-26 23:07:14 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/Destination
2016-06-26 23:07:14 +02:00
type Destination struct {
_ struct { } ` type:"structure" `
2016-11-19 19:41:01 +01:00
// 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" `
}
// String returns the string representation
func ( s Destination ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Destination ) GoString ( ) string {
return s . String ( )
}
// SetBccAddresses sets the BccAddresses field's value.
func ( s * Destination ) SetBccAddresses ( v [ ] * string ) * Destination {
s . BccAddresses = v
return s
}
// SetCcAddresses sets the CcAddresses field's value.
func ( s * Destination ) SetCcAddresses ( v [ ] * string ) * Destination {
s . CcAddresses = v
return s
}
// SetToAddresses sets the ToAddresses field's value.
func ( s * Destination ) SetToAddresses ( v [ ] * string ) * Destination {
s . ToAddresses = v
return s
}
// Contains information about the event destination to which the specified email
// sending events are published.
//
// When you create or update an event destination, you must provide one, and
// only one, destination. The destination can be either Amazon CloudWatch or
// Amazon Kinesis Firehose.
//
// Event destinations are associated with configuration sets, which enable you
// to publish email sending events to Amazon CloudWatch or Amazon Kinesis Firehose.
// For information about using configuration sets, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/EventDestination
2016-11-19 19:41:01 +01:00
type EventDestination struct {
_ struct { } ` type:"structure" `
// An object that contains the names, default values, and sources of the dimensions
// associated with an Amazon CloudWatch event destination.
CloudWatchDestination * CloudWatchDestination ` type:"structure" `
// Sets whether Amazon SES publishes events to this destination when you send
// an email with the associated configuration set. Set to true to enable publishing
// to this destination; set to false to prevent publishing to this destination.
// The default value is false.
Enabled * bool ` type:"boolean" `
// An object that contains the delivery stream ARN and the IAM role ARN associated
// with an Amazon Kinesis Firehose event destination.
KinesisFirehoseDestination * KinesisFirehoseDestination ` type:"structure" `
// The type of email sending events to publish to the event destination.
//
// MatchingEventTypes is a required field
MatchingEventTypes [ ] * string ` type:"list" required:"true" `
// The name of the event destination. The name must:
//
// * Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_),
// or dashes (-).
//
// * Contain less than 64 characters.
//
// Name is a required field
Name * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s EventDestination ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EventDestination ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * EventDestination ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "EventDestination" }
if s . MatchingEventTypes == nil {
invalidParams . Add ( request . NewErrParamRequired ( "MatchingEventTypes" ) )
}
if s . Name == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Name" ) )
}
if s . CloudWatchDestination != nil {
if err := s . CloudWatchDestination . Validate ( ) ; err != nil {
invalidParams . AddNested ( "CloudWatchDestination" , err . ( request . ErrInvalidParams ) )
}
}
if s . KinesisFirehoseDestination != nil {
if err := s . KinesisFirehoseDestination . Validate ( ) ; err != nil {
invalidParams . AddNested ( "KinesisFirehoseDestination" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-06-26 23:07:14 +02:00
2016-11-19 19:41:01 +01:00
// SetCloudWatchDestination sets the CloudWatchDestination field's value.
func ( s * EventDestination ) SetCloudWatchDestination ( v * CloudWatchDestination ) * EventDestination {
s . CloudWatchDestination = v
return s
}
2016-06-26 23:07:14 +02:00
2016-11-19 19:41:01 +01:00
// SetEnabled sets the Enabled field's value.
func ( s * EventDestination ) SetEnabled ( v bool ) * EventDestination {
s . Enabled = & v
return s
2016-06-26 23:07:14 +02:00
}
2016-11-19 19:41:01 +01:00
// SetKinesisFirehoseDestination sets the KinesisFirehoseDestination field's value.
func ( s * EventDestination ) SetKinesisFirehoseDestination ( v * KinesisFirehoseDestination ) * EventDestination {
s . KinesisFirehoseDestination = v
return s
2016-06-26 23:07:14 +02:00
}
2016-11-19 19:41:01 +01:00
// SetMatchingEventTypes sets the MatchingEventTypes field's value.
func ( s * EventDestination ) SetMatchingEventTypes ( v [ ] * string ) * EventDestination {
s . MatchingEventTypes = v
return s
}
// SetName sets the Name field's value.
func ( s * EventDestination ) SetName ( v string ) * EventDestination {
s . Name = & v
return s
2016-06-26 23:07:14 +02:00
}
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ExtensionField
2016-06-26 23:07:14 +02:00
type ExtensionField struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// Name is a required field
2016-06-26 23:07:14 +02:00
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").
2016-10-17 23:21:08 +02:00
//
// Value is a required field
2016-06-26 23:07:14 +02:00
Value * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s ExtensionField ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ExtensionField ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ExtensionField ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ExtensionField" }
if s . Name == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Name" ) )
}
if s . Value == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Value" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetName sets the Name field's value.
func ( s * ExtensionField ) SetName ( v string ) * ExtensionField {
s . Name = & v
return s
}
// SetValue sets the Value field's value.
func ( s * ExtensionField ) SetValue ( v string ) * ExtensionField {
s . Value = & v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityDkimAttributesRequest
2016-06-26 23:07:14 +02:00
type GetIdentityDkimAttributesInput struct {
_ struct { } ` type:"structure" `
// A list of one or more verified identities - email addresses, domains, or
// both.
2016-10-17 23:21:08 +02:00
//
// Identities is a required field
2016-06-26 23:07:14 +02:00
Identities [ ] * string ` type:"list" required:"true" `
}
// String returns the string representation
func ( s GetIdentityDkimAttributesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetIdentityDkimAttributesInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * GetIdentityDkimAttributesInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "GetIdentityDkimAttributesInput" }
if s . Identities == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Identities" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetIdentities sets the Identities field's value.
func ( s * GetIdentityDkimAttributesInput ) SetIdentities ( v [ ] * string ) * GetIdentityDkimAttributesInput {
s . Identities = v
return s
}
2016-07-15 15:49:02 +02:00
// 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.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityDkimAttributesResponse
2016-06-26 23:07:14 +02:00
type GetIdentityDkimAttributesOutput struct {
_ struct { } ` type:"structure" `
// The DKIM attributes for an email address or a domain.
2016-10-17 23:21:08 +02:00
//
// DkimAttributes is a required field
2016-06-26 23:07:14 +02:00
DkimAttributes map [ string ] * IdentityDkimAttributes ` type:"map" required:"true" `
}
// String returns the string representation
func ( s GetIdentityDkimAttributesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetIdentityDkimAttributesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetDkimAttributes sets the DkimAttributes field's value.
func ( s * GetIdentityDkimAttributesOutput ) SetDkimAttributes ( v map [ string ] * IdentityDkimAttributes ) * GetIdentityDkimAttributesOutput {
s . DkimAttributes = v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityMailFromDomainAttributesRequest
2016-07-15 15:49:02 +02:00
type GetIdentityMailFromDomainAttributesInput struct {
_ struct { } ` type:"structure" `
// A list of one or more identities.
2016-10-17 23:21:08 +02:00
//
// Identities is a required field
2016-07-15 15:49:02 +02:00
Identities [ ] * string ` type:"list" required:"true" `
}
// String returns the string representation
func ( s GetIdentityMailFromDomainAttributesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetIdentityMailFromDomainAttributesInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * GetIdentityMailFromDomainAttributesInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "GetIdentityMailFromDomainAttributesInput" }
if s . Identities == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Identities" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetIdentities sets the Identities field's value.
func ( s * GetIdentityMailFromDomainAttributesInput ) SetIdentities ( v [ ] * string ) * GetIdentityMailFromDomainAttributesInput {
s . Identities = v
return s
}
2016-07-15 15:49:02 +02:00
// Represents the custom MAIL FROM attributes for a list of identities.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityMailFromDomainAttributesResponse
2016-07-15 15:49:02 +02:00
type GetIdentityMailFromDomainAttributesOutput struct {
_ struct { } ` type:"structure" `
// A map of identities to custom MAIL FROM attributes.
2016-10-17 23:21:08 +02:00
//
// MailFromDomainAttributes is a required field
2016-07-15 15:49:02 +02:00
MailFromDomainAttributes map [ string ] * IdentityMailFromDomainAttributes ` type:"map" required:"true" `
}
// String returns the string representation
func ( s GetIdentityMailFromDomainAttributesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetIdentityMailFromDomainAttributesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetMailFromDomainAttributes sets the MailFromDomainAttributes field's value.
func ( s * GetIdentityMailFromDomainAttributesOutput ) SetMailFromDomainAttributes ( v map [ string ] * IdentityMailFromDomainAttributes ) * GetIdentityMailFromDomainAttributesOutput {
s . MailFromDomainAttributes = v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityNotificationAttributesRequest
2016-06-26 23:07:14 +02:00
type GetIdentityNotificationAttributesInput struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// Identities is a required field
2016-06-26 23:07:14 +02:00
Identities [ ] * string ` type:"list" required:"true" `
}
// String returns the string representation
func ( s GetIdentityNotificationAttributesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetIdentityNotificationAttributesInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * GetIdentityNotificationAttributesInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "GetIdentityNotificationAttributesInput" }
if s . Identities == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Identities" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetIdentities sets the Identities field's value.
func ( s * GetIdentityNotificationAttributesInput ) SetIdentities ( v [ ] * string ) * GetIdentityNotificationAttributesInput {
s . Identities = v
return s
}
2016-07-15 15:49:02 +02:00
// Represents the notification attributes for a list of identities.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityNotificationAttributesResponse
2016-06-26 23:07:14 +02:00
type GetIdentityNotificationAttributesOutput struct {
_ struct { } ` type:"structure" `
// A map of Identity to IdentityNotificationAttributes.
2016-10-17 23:21:08 +02:00
//
// NotificationAttributes is a required field
2016-06-26 23:07:14 +02:00
NotificationAttributes map [ string ] * IdentityNotificationAttributes ` type:"map" required:"true" `
}
// String returns the string representation
func ( s GetIdentityNotificationAttributesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetIdentityNotificationAttributesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetNotificationAttributes sets the NotificationAttributes field's value.
func ( s * GetIdentityNotificationAttributesOutput ) SetNotificationAttributes ( v map [ string ] * IdentityNotificationAttributes ) * GetIdentityNotificationAttributesOutput {
s . NotificationAttributes = v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityPoliciesRequest
2016-06-26 23:07:14 +02:00
type GetIdentityPoliciesInput struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// Identity is a required field
2016-06-26 23:07:14 +02:00
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.
2016-10-17 23:21:08 +02:00
//
// PolicyNames is a required field
2016-06-26 23:07:14 +02:00
PolicyNames [ ] * string ` type:"list" required:"true" `
}
// String returns the string representation
func ( s GetIdentityPoliciesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetIdentityPoliciesInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * GetIdentityPoliciesInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "GetIdentityPoliciesInput" }
if s . Identity == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Identity" ) )
}
if s . PolicyNames == nil {
invalidParams . Add ( request . NewErrParamRequired ( "PolicyNames" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetIdentity sets the Identity field's value.
func ( s * GetIdentityPoliciesInput ) SetIdentity ( v string ) * GetIdentityPoliciesInput {
s . Identity = & v
return s
}
// SetPolicyNames sets the PolicyNames field's value.
func ( s * GetIdentityPoliciesInput ) SetPolicyNames ( v [ ] * string ) * GetIdentityPoliciesInput {
s . PolicyNames = v
return s
}
2016-07-15 15:49:02 +02:00
// Represents the requested sending authorization policies.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityPoliciesResponse
2016-06-26 23:07:14 +02:00
type GetIdentityPoliciesOutput struct {
_ struct { } ` type:"structure" `
// A map of policy names to policies.
2016-10-17 23:21:08 +02:00
//
// Policies is a required field
2016-06-26 23:07:14 +02:00
Policies map [ string ] * string ` type:"map" required:"true" `
}
// String returns the string representation
func ( s GetIdentityPoliciesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetIdentityPoliciesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetPolicies sets the Policies field's value.
func ( s * GetIdentityPoliciesOutput ) SetPolicies ( v map [ string ] * string ) * GetIdentityPoliciesOutput {
s . Policies = v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityVerificationAttributesRequest
2016-06-26 23:07:14 +02:00
type GetIdentityVerificationAttributesInput struct {
_ struct { } ` type:"structure" `
// A list of identities.
2016-10-17 23:21:08 +02:00
//
// Identities is a required field
2016-06-26 23:07:14 +02:00
Identities [ ] * string ` type:"list" required:"true" `
}
// String returns the string representation
func ( s GetIdentityVerificationAttributesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetIdentityVerificationAttributesInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * GetIdentityVerificationAttributesInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "GetIdentityVerificationAttributesInput" }
if s . Identities == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Identities" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetIdentities sets the Identities field's value.
func ( s * GetIdentityVerificationAttributesInput ) SetIdentities ( v [ ] * string ) * GetIdentityVerificationAttributesInput {
s . Identities = v
return s
}
2016-07-15 15:49:02 +02:00
// The Amazon SES verification status of a list of identities. For domain identities,
// this response also contains the verification token.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityVerificationAttributesResponse
2016-06-26 23:07:14 +02:00
type GetIdentityVerificationAttributesOutput struct {
_ struct { } ` type:"structure" `
// A map of Identities to IdentityVerificationAttributes objects.
2016-10-17 23:21:08 +02:00
//
// VerificationAttributes is a required field
2016-06-26 23:07:14 +02:00
VerificationAttributes map [ string ] * IdentityVerificationAttributes ` type:"map" required:"true" `
}
// String returns the string representation
func ( s GetIdentityVerificationAttributesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetIdentityVerificationAttributesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetVerificationAttributes sets the VerificationAttributes field's value.
func ( s * GetIdentityVerificationAttributesOutput ) SetVerificationAttributes ( v map [ string ] * IdentityVerificationAttributes ) * GetIdentityVerificationAttributesOutput {
s . VerificationAttributes = v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetSendQuotaInput
2016-06-26 23:07:14 +02:00
type GetSendQuotaInput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s GetSendQuotaInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetSendQuotaInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Represents your Amazon SES daily sending quota, maximum send rate, and the
// number of emails you have sent in the last 24 hours.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetSendQuotaResponse
2016-06-26 23:07:14 +02:00
type GetSendQuotaOutput struct {
_ struct { } ` type:"structure" `
// 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.
//
2016-11-19 19:41:01 +01:00
// The rate at which Amazon SES accepts the user's messages might be less than
// the maximum send rate.
2016-06-26 23:07:14 +02:00
MaxSendRate * float64 ` type:"double" `
// The number of emails sent during the previous 24 hours.
SentLast24Hours * float64 ` type:"double" `
}
// String returns the string representation
func ( s GetSendQuotaOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetSendQuotaOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetMax24HourSend sets the Max24HourSend field's value.
func ( s * GetSendQuotaOutput ) SetMax24HourSend ( v float64 ) * GetSendQuotaOutput {
s . Max24HourSend = & v
return s
}
// SetMaxSendRate sets the MaxSendRate field's value.
func ( s * GetSendQuotaOutput ) SetMaxSendRate ( v float64 ) * GetSendQuotaOutput {
s . MaxSendRate = & v
return s
}
// SetSentLast24Hours sets the SentLast24Hours field's value.
func ( s * GetSendQuotaOutput ) SetSentLast24Hours ( v float64 ) * GetSendQuotaOutput {
s . SentLast24Hours = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetSendStatisticsInput
2016-06-26 23:07:14 +02:00
type GetSendStatisticsInput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s GetSendStatisticsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetSendStatisticsInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Represents a list of data points. This list contains aggregated data from
// the previous two weeks of your sending activity with Amazon SES.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetSendStatisticsResponse
2016-06-26 23:07:14 +02:00
type GetSendStatisticsOutput struct {
_ struct { } ` type:"structure" `
// A list of data points, each of which represents 15 minutes of activity.
SendDataPoints [ ] * SendDataPoint ` type:"list" `
}
// String returns the string representation
func ( s GetSendStatisticsOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetSendStatisticsOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetSendDataPoints sets the SendDataPoints field's value.
func ( s * GetSendStatisticsOutput ) SetSendDataPoints ( v [ ] * SendDataPoint ) * GetSendStatisticsOutput {
s . SendDataPoints = v
return s
}
2016-06-26 23:07:14 +02:00
// Represents the DKIM attributes of a verified email address or a domain.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/IdentityDkimAttributes
2016-06-26 23:07:14 +02:00
type IdentityDkimAttributes struct {
_ struct { } ` type:"structure" `
// True if DKIM signing is enabled for email sent from the identity; false otherwise.
2016-11-19 19:41:01 +01:00
// The default value is true.
2016-10-17 23:21:08 +02:00
//
// DkimEnabled is a required field
2016-06-26 23:07:14 +02:00
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.)
2016-10-17 23:21:08 +02:00
//
// DkimVerificationStatus is a required field
2016-06-26 23:07:14 +02:00
DkimVerificationStatus * string ` type:"string" required:"true" enum:"VerificationStatus" `
}
// String returns the string representation
func ( s IdentityDkimAttributes ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s IdentityDkimAttributes ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetDkimEnabled sets the DkimEnabled field's value.
func ( s * IdentityDkimAttributes ) SetDkimEnabled ( v bool ) * IdentityDkimAttributes {
s . DkimEnabled = & v
return s
}
// SetDkimTokens sets the DkimTokens field's value.
func ( s * IdentityDkimAttributes ) SetDkimTokens ( v [ ] * string ) * IdentityDkimAttributes {
s . DkimTokens = v
return s
}
// SetDkimVerificationStatus sets the DkimVerificationStatus field's value.
func ( s * IdentityDkimAttributes ) SetDkimVerificationStatus ( v string ) * IdentityDkimAttributes {
s . DkimVerificationStatus = & v
return s
}
2016-07-15 15:49:02 +02:00
// Represents the custom MAIL FROM domain attributes of a verified identity
// (email address or domain).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/IdentityMailFromDomainAttributes
2016-07-15 15:49:02 +02:00
type IdentityMailFromDomainAttributes struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// BehaviorOnMXFailure is a required field
2016-07-15 15:49:02 +02:00
BehaviorOnMXFailure * string ` type:"string" required:"true" enum:"BehaviorOnMXFailure" `
// The custom MAIL FROM domain that the identity is configured to use.
2016-10-17 23:21:08 +02:00
//
// MailFromDomain is a required field
2016-07-15 15:49:02 +02:00
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.
2016-10-17 23:21:08 +02:00
//
// MailFromDomainStatus is a required field
2016-07-15 15:49:02 +02:00
MailFromDomainStatus * string ` type:"string" required:"true" enum:"CustomMailFromStatus" `
}
// String returns the string representation
func ( s IdentityMailFromDomainAttributes ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s IdentityMailFromDomainAttributes ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetBehaviorOnMXFailure sets the BehaviorOnMXFailure field's value.
func ( s * IdentityMailFromDomainAttributes ) SetBehaviorOnMXFailure ( v string ) * IdentityMailFromDomainAttributes {
s . BehaviorOnMXFailure = & v
return s
}
// SetMailFromDomain sets the MailFromDomain field's value.
func ( s * IdentityMailFromDomainAttributes ) SetMailFromDomain ( v string ) * IdentityMailFromDomainAttributes {
s . MailFromDomain = & v
return s
}
// SetMailFromDomainStatus sets the MailFromDomainStatus field's value.
func ( s * IdentityMailFromDomainAttributes ) SetMailFromDomainStatus ( v string ) * IdentityMailFromDomainAttributes {
s . MailFromDomainStatus = & v
return s
}
2016-06-26 23:07:14 +02:00
// 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.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/IdentityNotificationAttributes
2016-06-26 23:07:14 +02:00
type IdentityNotificationAttributes struct {
_ struct { } ` type:"structure" `
// The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will
// publish bounce notifications.
2016-10-17 23:21:08 +02:00
//
// BounceTopic is a required field
2016-06-26 23:07:14 +02:00
BounceTopic * string ` type:"string" required:"true" `
// The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will
// publish complaint notifications.
2016-10-17 23:21:08 +02:00
//
// ComplaintTopic is a required field
2016-06-26 23:07:14 +02:00
ComplaintTopic * string ` type:"string" required:"true" `
// The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will
// publish delivery notifications.
2016-10-17 23:21:08 +02:00
//
// DeliveryTopic is a required field
2016-06-26 23:07:14 +02:00
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.
2016-10-17 23:21:08 +02:00
//
// ForwardingEnabled is a required field
2016-06-26 23:07:14 +02:00
ForwardingEnabled * bool ` type:"boolean" required:"true" `
2016-07-15 15:49:02 +02:00
// 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" `
2016-06-26 23:07:14 +02:00
}
// String returns the string representation
func ( s IdentityNotificationAttributes ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s IdentityNotificationAttributes ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetBounceTopic sets the BounceTopic field's value.
func ( s * IdentityNotificationAttributes ) SetBounceTopic ( v string ) * IdentityNotificationAttributes {
s . BounceTopic = & v
return s
}
// SetComplaintTopic sets the ComplaintTopic field's value.
func ( s * IdentityNotificationAttributes ) SetComplaintTopic ( v string ) * IdentityNotificationAttributes {
s . ComplaintTopic = & v
return s
}
// SetDeliveryTopic sets the DeliveryTopic field's value.
func ( s * IdentityNotificationAttributes ) SetDeliveryTopic ( v string ) * IdentityNotificationAttributes {
s . DeliveryTopic = & v
return s
}
// SetForwardingEnabled sets the ForwardingEnabled field's value.
func ( s * IdentityNotificationAttributes ) SetForwardingEnabled ( v bool ) * IdentityNotificationAttributes {
s . ForwardingEnabled = & v
return s
}
// SetHeadersInBounceNotificationsEnabled sets the HeadersInBounceNotificationsEnabled field's value.
func ( s * IdentityNotificationAttributes ) SetHeadersInBounceNotificationsEnabled ( v bool ) * IdentityNotificationAttributes {
s . HeadersInBounceNotificationsEnabled = & v
return s
}
// SetHeadersInComplaintNotificationsEnabled sets the HeadersInComplaintNotificationsEnabled field's value.
func ( s * IdentityNotificationAttributes ) SetHeadersInComplaintNotificationsEnabled ( v bool ) * IdentityNotificationAttributes {
s . HeadersInComplaintNotificationsEnabled = & v
return s
}
// SetHeadersInDeliveryNotificationsEnabled sets the HeadersInDeliveryNotificationsEnabled field's value.
func ( s * IdentityNotificationAttributes ) SetHeadersInDeliveryNotificationsEnabled ( v bool ) * IdentityNotificationAttributes {
s . HeadersInDeliveryNotificationsEnabled = & v
return s
}
2016-06-26 23:07:14 +02:00
// Represents the verification attributes of a single identity.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/IdentityVerificationAttributes
2016-06-26 23:07:14 +02:00
type IdentityVerificationAttributes struct {
_ struct { } ` type:"structure" `
// The verification status of the identity: "Pending", "Success", "Failed",
// or "TemporaryFailure".
2016-10-17 23:21:08 +02:00
//
// VerificationStatus is a required field
2016-06-26 23:07:14 +02:00
VerificationStatus * string ` type:"string" required:"true" enum:"VerificationStatus" `
// The verification token for a domain identity. Null for email address identities.
VerificationToken * string ` type:"string" `
}
// String returns the string representation
func ( s IdentityVerificationAttributes ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s IdentityVerificationAttributes ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetVerificationStatus sets the VerificationStatus field's value.
func ( s * IdentityVerificationAttributes ) SetVerificationStatus ( v string ) * IdentityVerificationAttributes {
s . VerificationStatus = & v
return s
}
// SetVerificationToken sets the VerificationToken field's value.
func ( s * IdentityVerificationAttributes ) SetVerificationToken ( v string ) * IdentityVerificationAttributes {
s . VerificationToken = & v
return s
}
// Contains the delivery stream ARN and the IAM role ARN associated with an
// Amazon Kinesis Firehose event destination.
//
// Event destinations, such as Amazon Kinesis Firehose, are associated with
// configuration sets, which enable you to publish email sending events. For
// information about using configuration sets, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/KinesisFirehoseDestination
2016-11-19 19:41:01 +01:00
type KinesisFirehoseDestination struct {
_ struct { } ` type:"structure" `
// The ARN of the Amazon Kinesis Firehose stream to which to publish email sending
// events.
//
// DeliveryStreamARN is a required field
DeliveryStreamARN * string ` type:"string" required:"true" `
// The ARN of the IAM role under which Amazon SES publishes email sending events
// to the Amazon Kinesis Firehose stream.
//
// IAMRoleARN is a required field
IAMRoleARN * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s KinesisFirehoseDestination ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s KinesisFirehoseDestination ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * KinesisFirehoseDestination ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "KinesisFirehoseDestination" }
if s . DeliveryStreamARN == nil {
invalidParams . Add ( request . NewErrParamRequired ( "DeliveryStreamARN" ) )
}
if s . IAMRoleARN == nil {
invalidParams . Add ( request . NewErrParamRequired ( "IAMRoleARN" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetDeliveryStreamARN sets the DeliveryStreamARN field's value.
func ( s * KinesisFirehoseDestination ) SetDeliveryStreamARN ( v string ) * KinesisFirehoseDestination {
s . DeliveryStreamARN = & v
return s
}
// SetIAMRoleARN sets the IAMRoleARN field's value.
func ( s * KinesisFirehoseDestination ) SetIAMRoleARN ( v string ) * KinesisFirehoseDestination {
s . IAMRoleARN = & v
return s
}
2016-06-26 23:07:14 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/LambdaAction
2016-06-26 23:07:14 +02:00
type LambdaAction struct {
_ struct { } ` type:"structure" `
// 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).
2016-10-17 23:21:08 +02:00
//
// FunctionArn is a required field
2016-06-26 23:07:14 +02:00
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).
//
2016-11-19 19:41:01 +01:00
// 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.
2016-06-26 23:07:14 +02:00
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" `
}
// String returns the string representation
func ( s LambdaAction ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s LambdaAction ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * LambdaAction ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "LambdaAction" }
if s . FunctionArn == nil {
invalidParams . Add ( request . NewErrParamRequired ( "FunctionArn" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetFunctionArn sets the FunctionArn field's value.
func ( s * LambdaAction ) SetFunctionArn ( v string ) * LambdaAction {
s . FunctionArn = & v
return s
}
// SetInvocationType sets the InvocationType field's value.
func ( s * LambdaAction ) SetInvocationType ( v string ) * LambdaAction {
s . InvocationType = & v
return s
}
// SetTopicArn sets the TopicArn field's value.
func ( s * LambdaAction ) SetTopicArn ( v string ) * LambdaAction {
s . TopicArn = & v
return s
}
// Represents a request to list the configuration sets associated with your
// AWS account. Configuration sets enable you to publish email sending events.
// For information about using configuration sets, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListConfigurationSetsRequest
2016-11-19 19:41:01 +01:00
type ListConfigurationSetsInput struct {
_ struct { } ` type:"structure" `
// The number of configuration sets to return.
MaxItems * int64 ` type:"integer" `
// A token returned from a previous call to ListConfigurationSets to indicate
// the position of the configuration set in the configuration set list.
NextToken * string ` type:"string" `
}
// String returns the string representation
func ( s ListConfigurationSetsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListConfigurationSetsInput ) GoString ( ) string {
return s . String ( )
}
// SetMaxItems sets the MaxItems field's value.
func ( s * ListConfigurationSetsInput ) SetMaxItems ( v int64 ) * ListConfigurationSetsInput {
s . MaxItems = & v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * ListConfigurationSetsInput ) SetNextToken ( v string ) * ListConfigurationSetsInput {
s . NextToken = & v
return s
}
// A list of configuration sets associated with your AWS account. Configuration
// sets enable you to publish email sending events. For information about using
// configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListConfigurationSetsResponse
2016-11-19 19:41:01 +01:00
type ListConfigurationSetsOutput struct {
_ struct { } ` type:"structure" `
// A list of configuration sets.
ConfigurationSets [ ] * ConfigurationSet ` type:"list" `
// A token indicating that there are additional configuration sets available
// to be listed. Pass this token to successive calls of ListConfigurationSets.
NextToken * string ` type:"string" `
}
// String returns the string representation
func ( s ListConfigurationSetsOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListConfigurationSetsOutput ) GoString ( ) string {
return s . String ( )
}
// SetConfigurationSets sets the ConfigurationSets field's value.
func ( s * ListConfigurationSetsOutput ) SetConfigurationSets ( v [ ] * ConfigurationSet ) * ListConfigurationSetsOutput {
s . ConfigurationSets = v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * ListConfigurationSetsOutput ) SetNextToken ( v string ) * ListConfigurationSetsOutput {
s . NextToken = & v
return s
}
2016-07-15 15:49:02 +02:00
// 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.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListIdentitiesRequest
2016-06-26 23:07:14 +02:00
type ListIdentitiesInput struct {
_ struct { } ` type:"structure" `
// 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" `
}
// String returns the string representation
func ( s ListIdentitiesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListIdentitiesInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetIdentityType sets the IdentityType field's value.
func ( s * ListIdentitiesInput ) SetIdentityType ( v string ) * ListIdentitiesInput {
s . IdentityType = & v
return s
}
// SetMaxItems sets the MaxItems field's value.
func ( s * ListIdentitiesInput ) SetMaxItems ( v int64 ) * ListIdentitiesInput {
s . MaxItems = & v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * ListIdentitiesInput ) SetNextToken ( v string ) * ListIdentitiesInput {
s . NextToken = & v
return s
}
2016-07-15 15:49:02 +02:00
// A list of all identities that you have attempted to verify under your AWS
// account, regardless of verification status.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListIdentitiesResponse
2016-06-26 23:07:14 +02:00
type ListIdentitiesOutput struct {
_ struct { } ` type:"structure" `
// A list of identities.
2016-10-17 23:21:08 +02:00
//
// Identities is a required field
2016-06-26 23:07:14 +02:00
Identities [ ] * string ` type:"list" required:"true" `
// The token used for pagination.
NextToken * string ` type:"string" `
}
// String returns the string representation
func ( s ListIdentitiesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListIdentitiesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetIdentities sets the Identities field's value.
func ( s * ListIdentitiesOutput ) SetIdentities ( v [ ] * string ) * ListIdentitiesOutput {
s . Identities = v
return s
}
// SetNextToken sets the NextToken field's value.
func ( s * ListIdentitiesOutput ) SetNextToken ( v string ) * ListIdentitiesOutput {
s . NextToken = & v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListIdentityPoliciesRequest
2016-06-26 23:07:14 +02:00
type ListIdentityPoliciesInput struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// Identity is a required field
2016-06-26 23:07:14 +02:00
Identity * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s ListIdentityPoliciesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListIdentityPoliciesInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ListIdentityPoliciesInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ListIdentityPoliciesInput" }
if s . Identity == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Identity" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetIdentity sets the Identity field's value.
func ( s * ListIdentityPoliciesInput ) SetIdentity ( v string ) * ListIdentityPoliciesInput {
s . Identity = & v
return s
}
2016-07-15 15:49:02 +02:00
// A list of names of sending authorization policies that apply to an identity.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListIdentityPoliciesResponse
2016-06-26 23:07:14 +02:00
type ListIdentityPoliciesOutput struct {
_ struct { } ` type:"structure" `
// A list of names of policies that apply to the specified identity.
2016-10-17 23:21:08 +02:00
//
// PolicyNames is a required field
2016-06-26 23:07:14 +02:00
PolicyNames [ ] * string ` type:"list" required:"true" `
}
// String returns the string representation
func ( s ListIdentityPoliciesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListIdentityPoliciesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetPolicyNames sets the PolicyNames field's value.
func ( s * ListIdentityPoliciesOutput ) SetPolicyNames ( v [ ] * string ) * ListIdentityPoliciesOutput {
s . PolicyNames = v
return s
}
// Represents a request to list the IP address filters that exist under your
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListReceiptFiltersRequest
2016-06-26 23:07:14 +02:00
type ListReceiptFiltersInput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s ListReceiptFiltersInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListReceiptFiltersInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// A list of IP address filters that exist under your AWS account.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListReceiptFiltersResponse
2016-06-26 23:07:14 +02:00
type ListReceiptFiltersOutput struct {
_ struct { } ` type:"structure" `
// 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" `
}
// String returns the string representation
func ( s ListReceiptFiltersOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListReceiptFiltersOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetFilters sets the Filters field's value.
func ( s * ListReceiptFiltersOutput ) SetFilters ( v [ ] * ReceiptFilter ) * ListReceiptFiltersOutput {
s . Filters = v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListReceiptRuleSetsRequest
2016-06-26 23:07:14 +02:00
type ListReceiptRuleSetsInput struct {
_ struct { } ` type:"structure" `
// A token returned from a previous call to ListReceiptRuleSets to indicate
// the position in the receipt rule set list.
NextToken * string ` type:"string" `
}
// String returns the string representation
func ( s ListReceiptRuleSetsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListReceiptRuleSetsInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetNextToken sets the NextToken field's value.
func ( s * ListReceiptRuleSetsInput ) SetNextToken ( v string ) * ListReceiptRuleSetsInput {
s . NextToken = & v
return s
}
2016-07-15 15:49:02 +02:00
// A list of receipt rule sets that exist under your AWS account.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListReceiptRuleSetsResponse
2016-06-26 23:07:14 +02:00
type ListReceiptRuleSetsOutput struct {
_ struct { } ` type:"structure" `
// 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" `
}
// String returns the string representation
func ( s ListReceiptRuleSetsOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListReceiptRuleSetsOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetNextToken sets the NextToken field's value.
func ( s * ListReceiptRuleSetsOutput ) SetNextToken ( v string ) * ListReceiptRuleSetsOutput {
s . NextToken = & v
return s
}
// SetRuleSets sets the RuleSets field's value.
func ( s * ListReceiptRuleSetsOutput ) SetRuleSets ( v [ ] * ReceiptRuleSetMetadata ) * ListReceiptRuleSetsOutput {
s . RuleSets = v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListVerifiedEmailAddressesInput
2016-06-26 23:07:14 +02:00
type ListVerifiedEmailAddressesInput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s ListVerifiedEmailAddressesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListVerifiedEmailAddressesInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// A list of email addresses that you have verified with Amazon SES under your
// AWS account.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ListVerifiedEmailAddressesResponse
2016-06-26 23:07:14 +02:00
type ListVerifiedEmailAddressesOutput struct {
_ struct { } ` type:"structure" `
// A list of email addresses that have been verified.
VerifiedEmailAddresses [ ] * string ` type:"list" `
}
// String returns the string representation
func ( s ListVerifiedEmailAddressesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListVerifiedEmailAddressesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetVerifiedEmailAddresses sets the VerifiedEmailAddresses field's value.
func ( s * ListVerifiedEmailAddressesOutput ) SetVerifiedEmailAddresses ( v [ ] * string ) * ListVerifiedEmailAddressesOutput {
s . VerifiedEmailAddresses = v
return s
}
2016-06-26 23:07:14 +02:00
// Represents the message to be sent, composed of a subject and a body.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/Message
2016-06-26 23:07:14 +02:00
type Message struct {
_ struct { } ` type:"structure" `
// The message body.
2016-10-17 23:21:08 +02:00
//
// Body is a required field
2016-06-26 23:07:14 +02:00
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.
2016-10-17 23:21:08 +02:00
//
// Subject is a required field
2016-06-26 23:07:14 +02:00
Subject * Content ` type:"structure" required:"true" `
}
// String returns the string representation
func ( s Message ) String ( ) string {
return awsutil . Prettify ( s )
}
2016-07-15 15:49:02 +02:00
// GoString returns the string representation
func ( s Message ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * Message ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "Message" }
if s . Body == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Body" ) )
}
if s . Subject == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Subject" ) )
}
if s . Body != nil {
if err := s . Body . Validate ( ) ; err != nil {
invalidParams . AddNested ( "Body" , err . ( request . ErrInvalidParams ) )
}
}
if s . Subject != nil {
if err := s . Subject . Validate ( ) ; err != nil {
invalidParams . AddNested ( "Subject" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
2016-06-26 23:07:14 +02:00
}
2016-11-19 19:41:01 +01:00
// SetBody sets the Body field's value.
func ( s * Message ) SetBody ( v * Body ) * Message {
s . Body = v
return s
}
// SetSubject sets the Subject field's value.
func ( s * Message ) SetSubject ( v * Content ) * Message {
s . Subject = v
return s
}
2016-06-26 23:07:14 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/MessageDsn
2016-06-26 23:07:14 +02:00
type MessageDsn struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// ReportingMta is a required field
2016-06-26 23:07:14 +02:00
ReportingMta * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s MessageDsn ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s MessageDsn ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * MessageDsn ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "MessageDsn" }
if s . ReportingMta == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ReportingMta" ) )
}
if s . ExtensionFields != nil {
for i , v := range s . ExtensionFields {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "ExtensionFields" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetArrivalDate sets the ArrivalDate field's value.
func ( s * MessageDsn ) SetArrivalDate ( v time . Time ) * MessageDsn {
s . ArrivalDate = & v
return s
}
// SetExtensionFields sets the ExtensionFields field's value.
func ( s * MessageDsn ) SetExtensionFields ( v [ ] * ExtensionField ) * MessageDsn {
s . ExtensionFields = v
return s
}
// SetReportingMta sets the ReportingMta field's value.
func ( s * MessageDsn ) SetReportingMta ( v string ) * MessageDsn {
s . ReportingMta = & v
return s
}
// Contains the name and value of a tag that you can provide to SendEmail or
// SendRawEmail to apply to an email.
//
// Message tags, which you use with configuration sets, enable you to publish
// email sending events. For information about using configuration sets, see
// the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/MessageTag
2016-11-19 19:41:01 +01:00
type MessageTag struct {
_ struct { } ` type:"structure" `
// The name of the tag. The name must:
//
// * Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_),
// or dashes (-).
//
// * Contain less than 256 characters.
//
// Name is a required field
Name * string ` type:"string" required:"true" `
// The value of the tag. The value must:
//
// * Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_),
// or dashes (-).
//
// * Contain less than 256 characters.
//
// Value is a required field
Value * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s MessageTag ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s MessageTag ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * MessageTag ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "MessageTag" }
if s . Name == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Name" ) )
}
if s . Value == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Value" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetName sets the Name field's value.
func ( s * MessageTag ) SetName ( v string ) * MessageTag {
s . Name = & v
return s
}
// SetValue sets the Value field's value.
func ( s * MessageTag ) SetValue ( v string ) * MessageTag {
s . Value = & v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/PutIdentityPolicyRequest
2016-06-26 23:07:14 +02:00
type PutIdentityPolicyInput struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// Identity is a required field
2016-06-26 23:07:14 +02:00
Identity * string ` type:"string" required:"true" `
// The text of the policy in JSON format. The policy cannot exceed 4 KB.
//
2016-11-19 19:41:01 +01:00
// 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).
2016-10-17 23:21:08 +02:00
//
// Policy is a required field
2016-06-26 23:07:14 +02:00
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.
2016-10-17 23:21:08 +02:00
//
// PolicyName is a required field
2016-06-26 23:07:14 +02:00
PolicyName * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s PutIdentityPolicyInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s PutIdentityPolicyInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * PutIdentityPolicyInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "PutIdentityPolicyInput" }
if s . Identity == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Identity" ) )
}
if s . Policy == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Policy" ) )
}
if s . Policy != nil && len ( * s . Policy ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "Policy" , 1 ) )
}
if s . PolicyName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "PolicyName" ) )
}
if s . PolicyName != nil && len ( * s . PolicyName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "PolicyName" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetIdentity sets the Identity field's value.
func ( s * PutIdentityPolicyInput ) SetIdentity ( v string ) * PutIdentityPolicyInput {
s . Identity = & v
return s
}
// SetPolicy sets the Policy field's value.
func ( s * PutIdentityPolicyInput ) SetPolicy ( v string ) * PutIdentityPolicyInput {
s . Policy = & v
return s
}
// SetPolicyName sets the PolicyName field's value.
func ( s * PutIdentityPolicyInput ) SetPolicyName ( v string ) * PutIdentityPolicyInput {
s . PolicyName = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/PutIdentityPolicyResponse
2016-06-26 23:07:14 +02:00
type PutIdentityPolicyOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s PutIdentityPolicyOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s PutIdentityPolicyOutput ) GoString ( ) string {
return s . String ( )
}
// Represents the raw data of the message.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/RawMessage
2016-06-26 23:07:14 +02:00
type RawMessage struct {
_ struct { } ` type:"structure" `
// The raw data of the message. The client must ensure that the message format
// complies with Internet email standards regarding email header fields, MIME
2016-07-29 10:11:56 +02:00
// types, MIME encoding, and base64 encoding.
2016-06-26 23:07:14 +02:00
//
// 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.
//
2016-11-19 19:41:01 +01:00
// Do not include these X-headers in the DKIM signature, because they are removed
// by Amazon SES before sending the email.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// For more information, go to the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html).
2016-07-15 15:49:02 +02:00
//
// Data is automatically base64 encoded/decoded by the SDK.
2016-10-17 23:21:08 +02:00
//
// Data is a required field
2016-06-26 23:07:14 +02:00
Data [ ] byte ` type:"blob" required:"true" `
}
// String returns the string representation
func ( s RawMessage ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RawMessage ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * RawMessage ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "RawMessage" }
if s . Data == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Data" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetData sets the Data field's value.
func ( s * RawMessage ) SetData ( v [ ] byte ) * RawMessage {
s . Data = v
return s
}
2016-06-26 23:07:14 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ReceiptAction
2016-06-26 23:07:14 +02:00
type ReceiptAction struct {
_ struct { } ` type:"structure" `
// 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" `
}
// String returns the string representation
func ( s ReceiptAction ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ReceiptAction ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ReceiptAction ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ReceiptAction" }
if s . AddHeaderAction != nil {
if err := s . AddHeaderAction . Validate ( ) ; err != nil {
invalidParams . AddNested ( "AddHeaderAction" , err . ( request . ErrInvalidParams ) )
}
}
if s . BounceAction != nil {
if err := s . BounceAction . Validate ( ) ; err != nil {
invalidParams . AddNested ( "BounceAction" , err . ( request . ErrInvalidParams ) )
}
}
if s . LambdaAction != nil {
if err := s . LambdaAction . Validate ( ) ; err != nil {
invalidParams . AddNested ( "LambdaAction" , err . ( request . ErrInvalidParams ) )
}
}
if s . S3Action != nil {
if err := s . S3Action . Validate ( ) ; err != nil {
invalidParams . AddNested ( "S3Action" , err . ( request . ErrInvalidParams ) )
}
}
if s . SNSAction != nil {
if err := s . SNSAction . Validate ( ) ; err != nil {
invalidParams . AddNested ( "SNSAction" , err . ( request . ErrInvalidParams ) )
}
}
if s . StopAction != nil {
if err := s . StopAction . Validate ( ) ; err != nil {
invalidParams . AddNested ( "StopAction" , err . ( request . ErrInvalidParams ) )
}
}
if s . WorkmailAction != nil {
if err := s . WorkmailAction . Validate ( ) ; err != nil {
invalidParams . AddNested ( "WorkmailAction" , err . ( request . ErrInvalidParams ) )
}
}
2016-11-19 19:41:01 +01:00
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetAddHeaderAction sets the AddHeaderAction field's value.
func ( s * ReceiptAction ) SetAddHeaderAction ( v * AddHeaderAction ) * ReceiptAction {
s . AddHeaderAction = v
return s
}
// SetBounceAction sets the BounceAction field's value.
func ( s * ReceiptAction ) SetBounceAction ( v * BounceAction ) * ReceiptAction {
s . BounceAction = v
return s
}
// SetLambdaAction sets the LambdaAction field's value.
func ( s * ReceiptAction ) SetLambdaAction ( v * LambdaAction ) * ReceiptAction {
s . LambdaAction = v
return s
}
// SetS3Action sets the S3Action field's value.
func ( s * ReceiptAction ) SetS3Action ( v * S3Action ) * ReceiptAction {
s . S3Action = v
return s
}
// SetSNSAction sets the SNSAction field's value.
func ( s * ReceiptAction ) SetSNSAction ( v * SNSAction ) * ReceiptAction {
s . SNSAction = v
return s
}
// SetStopAction sets the StopAction field's value.
func ( s * ReceiptAction ) SetStopAction ( v * StopAction ) * ReceiptAction {
s . StopAction = v
return s
}
// SetWorkmailAction sets the WorkmailAction field's value.
func ( s * ReceiptAction ) SetWorkmailAction ( v * WorkmailAction ) * ReceiptAction {
s . WorkmailAction = v
return s
2016-07-15 15:49:02 +02:00
}
2016-06-26 23:07:14 +02:00
// 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.
//
2016-11-19 19:41:01 +01:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ReceiptFilter
2016-06-26 23:07:14 +02:00
type ReceiptFilter struct {
_ struct { } ` type:"structure" `
// A structure that provides the IP addresses to block or allow, and whether
// to block or allow incoming mail from them.
2016-10-17 23:21:08 +02:00
//
// IpFilter is a required field
2016-06-26 23:07:14 +02:00
IpFilter * ReceiptIpFilter ` type:"structure" required:"true" `
// The name of the IP address filter. The name must:
//
2016-11-19 19:41:01 +01:00
// * Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores
// (_), or dashes (-).
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Start and end with a letter or number.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Contain less than 64 characters.
2016-10-17 23:21:08 +02:00
//
// Name is a required field
2016-06-26 23:07:14 +02:00
Name * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s ReceiptFilter ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ReceiptFilter ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ReceiptFilter ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ReceiptFilter" }
if s . IpFilter == nil {
invalidParams . Add ( request . NewErrParamRequired ( "IpFilter" ) )
}
if s . Name == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Name" ) )
}
if s . IpFilter != nil {
if err := s . IpFilter . Validate ( ) ; err != nil {
invalidParams . AddNested ( "IpFilter" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetIpFilter sets the IpFilter field's value.
func ( s * ReceiptFilter ) SetIpFilter ( v * ReceiptIpFilter ) * ReceiptFilter {
s . IpFilter = v
return s
}
// SetName sets the Name field's value.
func ( s * ReceiptFilter ) SetName ( v string ) * ReceiptFilter {
s . Name = & v
return s
}
2016-06-26 23:07:14 +02:00
// 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.
//
2016-11-19 19:41:01 +01:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ReceiptIpFilter
2016-06-26 23:07:14 +02:00
type ReceiptIpFilter struct {
_ struct { } ` type:"structure" `
// 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).
2016-10-17 23:21:08 +02:00
//
// Cidr is a required field
2016-06-26 23:07:14 +02:00
Cidr * string ` type:"string" required:"true" `
// Indicates whether to block or allow incoming mail from the specified IP addresses.
2016-10-17 23:21:08 +02:00
//
// Policy is a required field
2016-06-26 23:07:14 +02:00
Policy * string ` type:"string" required:"true" enum:"ReceiptFilterPolicy" `
}
// String returns the string representation
func ( s ReceiptIpFilter ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ReceiptIpFilter ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ReceiptIpFilter ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ReceiptIpFilter" }
if s . Cidr == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Cidr" ) )
}
if s . Policy == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Policy" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCidr sets the Cidr field's value.
func ( s * ReceiptIpFilter ) SetCidr ( v string ) * ReceiptIpFilter {
s . Cidr = & v
return s
}
// SetPolicy sets the Policy field's value.
func ( s * ReceiptIpFilter ) SetPolicy ( v string ) * ReceiptIpFilter {
s . Policy = & v
return s
}
2016-06-26 23:07:14 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ReceiptRule
2016-06-26 23:07:14 +02:00
type ReceiptRule struct {
_ struct { } ` type:"structure" `
// 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" `
2016-07-15 15:49:02 +02:00
// If true, the receipt rule is active. The default value is false.
2016-06-26 23:07:14 +02:00
Enabled * bool ` type:"boolean" `
// The name of the receipt rule. The name must:
//
2016-11-19 19:41:01 +01:00
// * Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores
// (_), or dashes (-).
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Start and end with a letter or number.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Contain less than 64 characters.
2016-10-17 23:21:08 +02:00
//
// Name is a required field
2016-06-26 23:07:14 +02:00
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
2016-07-15 15:49:02 +02:00
// spam and viruses. The default value is false.
2016-06-26 23:07:14 +02:00
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" `
}
// String returns the string representation
func ( s ReceiptRule ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ReceiptRule ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ReceiptRule ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ReceiptRule" }
if s . Name == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Name" ) )
}
if s . Actions != nil {
for i , v := range s . Actions {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "Actions" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetActions sets the Actions field's value.
func ( s * ReceiptRule ) SetActions ( v [ ] * ReceiptAction ) * ReceiptRule {
s . Actions = v
return s
}
// SetEnabled sets the Enabled field's value.
func ( s * ReceiptRule ) SetEnabled ( v bool ) * ReceiptRule {
s . Enabled = & v
return s
}
// SetName sets the Name field's value.
func ( s * ReceiptRule ) SetName ( v string ) * ReceiptRule {
s . Name = & v
return s
}
// SetRecipients sets the Recipients field's value.
func ( s * ReceiptRule ) SetRecipients ( v [ ] * string ) * ReceiptRule {
s . Recipients = v
return s
}
// SetScanEnabled sets the ScanEnabled field's value.
func ( s * ReceiptRule ) SetScanEnabled ( v bool ) * ReceiptRule {
s . ScanEnabled = & v
return s
}
// SetTlsPolicy sets the TlsPolicy field's value.
func ( s * ReceiptRule ) SetTlsPolicy ( v string ) * ReceiptRule {
s . TlsPolicy = & v
return s
}
2016-06-26 23:07:14 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ReceiptRuleSetMetadata
2016-06-26 23:07:14 +02:00
type ReceiptRuleSetMetadata struct {
_ struct { } ` type:"structure" `
// 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:
//
2016-11-19 19:41:01 +01:00
// * Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores
// (_), or dashes (-).
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Start and end with a letter or number.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Contain less than 64 characters.
2016-06-26 23:07:14 +02:00
Name * string ` type:"string" `
}
// String returns the string representation
func ( s ReceiptRuleSetMetadata ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ReceiptRuleSetMetadata ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCreatedTimestamp sets the CreatedTimestamp field's value.
func ( s * ReceiptRuleSetMetadata ) SetCreatedTimestamp ( v time . Time ) * ReceiptRuleSetMetadata {
s . CreatedTimestamp = & v
return s
}
// SetName sets the Name field's value.
func ( s * ReceiptRuleSetMetadata ) SetName ( v string ) * ReceiptRuleSetMetadata {
s . Name = & v
return s
}
2016-06-26 23:07:14 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/RecipientDsnFields
2016-06-26 23:07:14 +02:00
type RecipientDsnFields struct {
_ struct { } ` type:"structure" `
// 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).
2016-10-17 23:21:08 +02:00
//
// Action is a required field
2016-06-26 23:07:14 +02:00
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.
//
2016-11-19 19:41:01 +01:00
// Do not prepend the FinalRecipient email address with rfc 822;, as described
2016-06-26 23:07:14 +02:00
// 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).
2016-10-17 23:21:08 +02:00
//
// Status is a required field
2016-06-26 23:07:14 +02:00
Status * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s RecipientDsnFields ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RecipientDsnFields ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * RecipientDsnFields ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "RecipientDsnFields" }
if s . Action == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Action" ) )
}
if s . Status == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Status" ) )
}
if s . ExtensionFields != nil {
for i , v := range s . ExtensionFields {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "ExtensionFields" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetAction sets the Action field's value.
func ( s * RecipientDsnFields ) SetAction ( v string ) * RecipientDsnFields {
s . Action = & v
return s
}
// SetDiagnosticCode sets the DiagnosticCode field's value.
func ( s * RecipientDsnFields ) SetDiagnosticCode ( v string ) * RecipientDsnFields {
s . DiagnosticCode = & v
return s
}
// SetExtensionFields sets the ExtensionFields field's value.
func ( s * RecipientDsnFields ) SetExtensionFields ( v [ ] * ExtensionField ) * RecipientDsnFields {
s . ExtensionFields = v
return s
}
// SetFinalRecipient sets the FinalRecipient field's value.
func ( s * RecipientDsnFields ) SetFinalRecipient ( v string ) * RecipientDsnFields {
s . FinalRecipient = & v
return s
}
// SetLastAttemptDate sets the LastAttemptDate field's value.
func ( s * RecipientDsnFields ) SetLastAttemptDate ( v time . Time ) * RecipientDsnFields {
s . LastAttemptDate = & v
return s
}
// SetRemoteMta sets the RemoteMta field's value.
func ( s * RecipientDsnFields ) SetRemoteMta ( v string ) * RecipientDsnFields {
s . RemoteMta = & v
return s
}
// SetStatus sets the Status field's value.
func ( s * RecipientDsnFields ) SetStatus ( v string ) * RecipientDsnFields {
s . Status = & v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ReorderReceiptRuleSetRequest
2016-06-26 23:07:14 +02:00
type ReorderReceiptRuleSetInput struct {
_ struct { } ` type:"structure" `
// A list of the specified receipt rule set's receipt rules in the order that
// you want to put them.
2016-10-17 23:21:08 +02:00
//
// RuleNames is a required field
2016-06-26 23:07:14 +02:00
RuleNames [ ] * string ` type:"list" required:"true" `
// The name of the receipt rule set to reorder.
2016-10-17 23:21:08 +02:00
//
// RuleSetName is a required field
2016-06-26 23:07:14 +02:00
RuleSetName * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s ReorderReceiptRuleSetInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ReorderReceiptRuleSetInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ReorderReceiptRuleSetInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ReorderReceiptRuleSetInput" }
if s . RuleNames == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RuleNames" ) )
}
if s . RuleSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RuleSetName" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetRuleNames sets the RuleNames field's value.
func ( s * ReorderReceiptRuleSetInput ) SetRuleNames ( v [ ] * string ) * ReorderReceiptRuleSetInput {
s . RuleNames = v
return s
}
// SetRuleSetName sets the RuleSetName field's value.
func ( s * ReorderReceiptRuleSetInput ) SetRuleSetName ( v string ) * ReorderReceiptRuleSetInput {
s . RuleSetName = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/ReorderReceiptRuleSetResponse
2016-06-26 23:07:14 +02:00
type ReorderReceiptRuleSetOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s ReorderReceiptRuleSetOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ReorderReceiptRuleSetOutput ) GoString ( ) string {
return s . String ( )
}
// 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).
//
2016-11-19 19:41:01 +01:00
// When you save your emails to an Amazon S3 bucket, the maximum email size
2016-07-15 15:49:02 +02:00
// (including headers) is 30 MB. Emails larger than that will bounce.
//
2016-11-19 19:41:01 +01:00
// For information about specifying Amazon S3 actions in receipt rules, see
2016-07-15 15:49:02 +02:00
// the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-s3.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/S3Action
2016-06-26 23:07:14 +02:00
type S3Action struct {
_ struct { } ` type:"structure" `
// The name of the Amazon S3 bucket to which to save the received email.
2016-10-17 23:21:08 +02:00
//
// BucketName is a required field
2016-06-26 23:07:14 +02:00
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:
//
2016-11-19 19:41:01 +01:00
// * 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.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * 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).
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// For more information about key policies, see the AWS KMS Developer Guide
2016-06-26 23:07:14 +02:00
// (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.
//
2016-11-19 19:41:01 +01:00
// Your mail is encrypted by Amazon SES using the Amazon S3 encryption client
2016-06-26 23:07:14 +02:00
// 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.
2016-07-15 15:49:02 +02:00
// 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
2016-06-26 23:07:14 +02:00
// 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" `
}
// String returns the string representation
func ( s S3Action ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s S3Action ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * S3Action ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "S3Action" }
if s . BucketName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "BucketName" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetBucketName sets the BucketName field's value.
func ( s * S3Action ) SetBucketName ( v string ) * S3Action {
s . BucketName = & v
return s
}
// SetKmsKeyArn sets the KmsKeyArn field's value.
func ( s * S3Action ) SetKmsKeyArn ( v string ) * S3Action {
s . KmsKeyArn = & v
return s
}
// SetObjectKeyPrefix sets the ObjectKeyPrefix field's value.
func ( s * S3Action ) SetObjectKeyPrefix ( v string ) * S3Action {
s . ObjectKeyPrefix = & v
return s
}
// SetTopicArn sets the TopicArn field's value.
func ( s * S3Action ) SetTopicArn ( v string ) * S3Action {
s . TopicArn = & v
return s
}
2016-06-26 23:07:14 +02:00
// 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).
//
2016-11-19 19:41:01 +01:00
// You can only publish emails that are 150 KB or less (including the header)
2016-06-26 23:07:14 +02:00
// to Amazon SNS. Larger emails will bounce. If you anticipate emails larger
2016-07-15 15:49:02 +02:00
// than 150 KB, use the S3 action instead.
//
2016-11-19 19:41:01 +01:00
// For information about using a receipt rule to publish an Amazon SNS notification,
2016-07-15 15:49:02 +02:00
// see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-sns.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SNSAction
2016-06-26 23:07:14 +02:00
type SNSAction struct {
_ struct { } ` type:"structure" `
2016-07-15 15:49:02 +02:00
// 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" `
2016-06-26 23:07:14 +02:00
// 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).
2016-10-17 23:21:08 +02:00
//
// TopicArn is a required field
2016-06-26 23:07:14 +02:00
TopicArn * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s SNSAction ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SNSAction ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * SNSAction ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "SNSAction" }
if s . TopicArn == nil {
invalidParams . Add ( request . NewErrParamRequired ( "TopicArn" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEncoding sets the Encoding field's value.
func ( s * SNSAction ) SetEncoding ( v string ) * SNSAction {
s . Encoding = & v
return s
}
// SetTopicArn sets the TopicArn field's value.
func ( s * SNSAction ) SetTopicArn ( v string ) * SNSAction {
s . TopicArn = & v
return s
}
2016-07-15 15:49:02 +02:00
// Represents a request to send a bounce message to the sender of an email you
// received through Amazon SES.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SendBounceRequest
2016-06-26 23:07:14 +02:00
type SendBounceInput struct {
_ struct { } ` type:"structure" `
// The address to use in the "From" header of the bounce message. This must
// be an identity that you have verified with Amazon SES.
2016-10-17 23:21:08 +02:00
//
// BounceSender is a required field
2016-06-26 23:07:14 +02:00
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.
2016-10-17 23:21:08 +02:00
//
// BouncedRecipientInfoList is a required field
2016-06-26 23:07:14 +02:00
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.
2016-10-17 23:21:08 +02:00
//
// OriginalMessageId is a required field
2016-06-26 23:07:14 +02:00
OriginalMessageId * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s SendBounceInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SendBounceInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * SendBounceInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "SendBounceInput" }
if s . BounceSender == nil {
invalidParams . Add ( request . NewErrParamRequired ( "BounceSender" ) )
}
if s . BouncedRecipientInfoList == nil {
invalidParams . Add ( request . NewErrParamRequired ( "BouncedRecipientInfoList" ) )
}
if s . OriginalMessageId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "OriginalMessageId" ) )
}
if s . BouncedRecipientInfoList != nil {
for i , v := range s . BouncedRecipientInfoList {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "BouncedRecipientInfoList" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if s . MessageDsn != nil {
if err := s . MessageDsn . Validate ( ) ; err != nil {
invalidParams . AddNested ( "MessageDsn" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetBounceSender sets the BounceSender field's value.
func ( s * SendBounceInput ) SetBounceSender ( v string ) * SendBounceInput {
s . BounceSender = & v
return s
}
// SetBounceSenderArn sets the BounceSenderArn field's value.
func ( s * SendBounceInput ) SetBounceSenderArn ( v string ) * SendBounceInput {
s . BounceSenderArn = & v
return s
}
// SetBouncedRecipientInfoList sets the BouncedRecipientInfoList field's value.
func ( s * SendBounceInput ) SetBouncedRecipientInfoList ( v [ ] * BouncedRecipientInfo ) * SendBounceInput {
s . BouncedRecipientInfoList = v
return s
}
// SetExplanation sets the Explanation field's value.
func ( s * SendBounceInput ) SetExplanation ( v string ) * SendBounceInput {
s . Explanation = & v
return s
}
// SetMessageDsn sets the MessageDsn field's value.
func ( s * SendBounceInput ) SetMessageDsn ( v * MessageDsn ) * SendBounceInput {
s . MessageDsn = v
return s
}
// SetOriginalMessageId sets the OriginalMessageId field's value.
func ( s * SendBounceInput ) SetOriginalMessageId ( v string ) * SendBounceInput {
s . OriginalMessageId = & v
return s
}
2016-07-15 15:49:02 +02:00
// Represents a unique message ID.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SendBounceResponse
2016-06-26 23:07:14 +02:00
type SendBounceOutput struct {
_ struct { } ` type:"structure" `
// The message ID of the bounce message.
MessageId * string ` type:"string" `
}
// String returns the string representation
func ( s SendBounceOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SendBounceOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetMessageId sets the MessageId field's value.
func ( s * SendBounceOutput ) SetMessageId ( v string ) * SendBounceOutput {
s . MessageId = & v
return s
}
2016-06-26 23:07:14 +02:00
// Represents sending statistics data. Each SendDataPoint contains statistics
// for a 15-minute period of sending activity.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SendDataPoint
2016-06-26 23:07:14 +02:00
type SendDataPoint struct {
_ struct { } ` type:"structure" `
// Number of emails that have bounced.
Bounces * int64 ` type:"long" `
// Number of unwanted emails that were rejected by recipients.
Complaints * int64 ` type:"long" `
2016-11-19 19:41:01 +01:00
// Number of emails that have been sent.
2016-06-26 23:07:14 +02:00
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" `
}
// String returns the string representation
func ( s SendDataPoint ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SendDataPoint ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetBounces sets the Bounces field's value.
func ( s * SendDataPoint ) SetBounces ( v int64 ) * SendDataPoint {
s . Bounces = & v
return s
}
// SetComplaints sets the Complaints field's value.
func ( s * SendDataPoint ) SetComplaints ( v int64 ) * SendDataPoint {
s . Complaints = & v
return s
}
// SetDeliveryAttempts sets the DeliveryAttempts field's value.
func ( s * SendDataPoint ) SetDeliveryAttempts ( v int64 ) * SendDataPoint {
s . DeliveryAttempts = & v
return s
}
// SetRejects sets the Rejects field's value.
func ( s * SendDataPoint ) SetRejects ( v int64 ) * SendDataPoint {
s . Rejects = & v
return s
}
// SetTimestamp sets the Timestamp field's value.
func ( s * SendDataPoint ) SetTimestamp ( v time . Time ) * SendDataPoint {
s . Timestamp = & v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SendEmailRequest
2016-06-26 23:07:14 +02:00
type SendEmailInput struct {
_ struct { } ` type:"structure" `
2016-11-19 19:41:01 +01:00
// The name of the configuration set to use when you send an email using SendEmail.
ConfigurationSetName * string ` type:"string" `
2016-06-26 23:07:14 +02:00
// The destination for this email, composed of To:, CC:, and BCC: fields.
2016-10-17 23:21:08 +02:00
//
// Destination is a required field
2016-06-26 23:07:14 +02:00
Destination * Destination ` type:"structure" required:"true" `
// The message to be sent.
2016-10-17 23:21:08 +02:00
//
// Message is a required field
2016-06-26 23:07:14 +02:00
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).
//
2016-11-19 19:41:01 +01:00
// 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
2016-06-26 23:07:14 +02:00
// parameter. For more information about sending authorization, see the Amazon
// SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).
//
2016-11-19 19:41:01 +01:00
// In all cases, the email address must be 7-bit ASCII. If the text must contain
2016-06-26 23:07:14 +02:00
// 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).
2016-10-17 23:21:08 +02:00
//
// Source is a required field
2016-06-26 23:07:14 +02:00
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" `
2016-11-19 19:41:01 +01:00
// A list of tags, in the form of name/value pairs, to apply to an email that
// you send using SendEmail. Tags correspond to characteristics of the email
// that you define, so that you can publish email sending events.
Tags [ ] * MessageTag ` type:"list" `
2016-06-26 23:07:14 +02:00
}
// String returns the string representation
func ( s SendEmailInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SendEmailInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * SendEmailInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "SendEmailInput" }
if s . Destination == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Destination" ) )
}
if s . Message == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Message" ) )
}
if s . Source == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Source" ) )
}
if s . Message != nil {
if err := s . Message . Validate ( ) ; err != nil {
invalidParams . AddNested ( "Message" , err . ( request . ErrInvalidParams ) )
}
}
2016-11-19 19:41:01 +01:00
if s . Tags != nil {
for i , v := range s . Tags {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "Tags" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
2016-07-15 15:49:02 +02:00
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetConfigurationSetName sets the ConfigurationSetName field's value.
func ( s * SendEmailInput ) SetConfigurationSetName ( v string ) * SendEmailInput {
s . ConfigurationSetName = & v
return s
}
// SetDestination sets the Destination field's value.
func ( s * SendEmailInput ) SetDestination ( v * Destination ) * SendEmailInput {
s . Destination = v
return s
}
// SetMessage sets the Message field's value.
func ( s * SendEmailInput ) SetMessage ( v * Message ) * SendEmailInput {
s . Message = v
return s
}
// SetReplyToAddresses sets the ReplyToAddresses field's value.
func ( s * SendEmailInput ) SetReplyToAddresses ( v [ ] * string ) * SendEmailInput {
s . ReplyToAddresses = v
return s
}
// SetReturnPath sets the ReturnPath field's value.
func ( s * SendEmailInput ) SetReturnPath ( v string ) * SendEmailInput {
s . ReturnPath = & v
return s
}
// SetReturnPathArn sets the ReturnPathArn field's value.
func ( s * SendEmailInput ) SetReturnPathArn ( v string ) * SendEmailInput {
s . ReturnPathArn = & v
return s
}
// SetSource sets the Source field's value.
func ( s * SendEmailInput ) SetSource ( v string ) * SendEmailInput {
s . Source = & v
return s
}
// SetSourceArn sets the SourceArn field's value.
func ( s * SendEmailInput ) SetSourceArn ( v string ) * SendEmailInput {
s . SourceArn = & v
return s
}
// SetTags sets the Tags field's value.
func ( s * SendEmailInput ) SetTags ( v [ ] * MessageTag ) * SendEmailInput {
s . Tags = v
return s
}
2016-07-15 15:49:02 +02:00
// Represents a unique message ID.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SendEmailResponse
2016-06-26 23:07:14 +02:00
type SendEmailOutput struct {
_ struct { } ` type:"structure" `
// The unique message identifier returned from the SendEmail action.
2016-10-17 23:21:08 +02:00
//
// MessageId is a required field
2016-06-26 23:07:14 +02:00
MessageId * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s SendEmailOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SendEmailOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetMessageId sets the MessageId field's value.
func ( s * SendEmailOutput ) SetMessageId ( v string ) * SendEmailOutput {
s . MessageId = & v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SendRawEmailRequest
2016-06-26 23:07:14 +02:00
type SendRawEmailInput struct {
_ struct { } ` type:"structure" `
2016-11-19 19:41:01 +01:00
// The name of the configuration set to use when you send an email using SendRawEmail.
ConfigurationSetName * string ` type:"string" `
2016-06-26 23:07:14 +02:00
// 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.
//
2016-11-19 19:41:01 +01:00
// For information about when to use this parameter, see the description of
2016-06-26 23:07:14 +02:00
// 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:
//
2016-11-19 19:41:01 +01:00
// * Message must contain a header and a body, separated by a blank line.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * All required header fields must be present.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Each part of a multipart MIME message must be formatted properly.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * 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).
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Must be base64-encoded.
2016-10-17 23:21:08 +02:00
//
// RawMessage is a required field
2016-06-26 23:07:14 +02:00
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.
//
2016-11-19 19:41:01 +01:00
// For information about when to use this parameter, see the description of
2016-06-26 23:07:14 +02:00
// 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.)
//
2016-11-19 19:41:01 +01:00
// By default, the string must be 7-bit ASCII. If the text must contain any
2016-06-26 23:07:14 +02:00
// 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).
//
2016-11-19 19:41:01 +01:00
// If you specify the Source parameter and have feedback forwarding enabled,
2016-06-26 23:07:14 +02:00
// 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.
//
2016-11-19 19:41:01 +01:00
// For information about when to use this parameter, see the description of
2016-06-26 23:07:14 +02:00
// 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" `
2016-11-19 19:41:01 +01:00
// A list of tags, in the form of name/value pairs, to apply to an email that
// you send using SendRawEmail. Tags correspond to characteristics of the email
// that you define, so that you can publish email sending events.
Tags [ ] * MessageTag ` type:"list" `
2016-06-26 23:07:14 +02:00
}
// String returns the string representation
func ( s SendRawEmailInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SendRawEmailInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * SendRawEmailInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "SendRawEmailInput" }
if s . RawMessage == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RawMessage" ) )
}
if s . RawMessage != nil {
if err := s . RawMessage . Validate ( ) ; err != nil {
invalidParams . AddNested ( "RawMessage" , err . ( request . ErrInvalidParams ) )
}
}
2016-11-19 19:41:01 +01:00
if s . Tags != nil {
for i , v := range s . Tags {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "Tags" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
2016-07-15 15:49:02 +02:00
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetConfigurationSetName sets the ConfigurationSetName field's value.
func ( s * SendRawEmailInput ) SetConfigurationSetName ( v string ) * SendRawEmailInput {
s . ConfigurationSetName = & v
return s
}
// SetDestinations sets the Destinations field's value.
func ( s * SendRawEmailInput ) SetDestinations ( v [ ] * string ) * SendRawEmailInput {
s . Destinations = v
return s
}
// SetFromArn sets the FromArn field's value.
func ( s * SendRawEmailInput ) SetFromArn ( v string ) * SendRawEmailInput {
s . FromArn = & v
return s
}
// SetRawMessage sets the RawMessage field's value.
func ( s * SendRawEmailInput ) SetRawMessage ( v * RawMessage ) * SendRawEmailInput {
s . RawMessage = v
return s
}
// SetReturnPathArn sets the ReturnPathArn field's value.
func ( s * SendRawEmailInput ) SetReturnPathArn ( v string ) * SendRawEmailInput {
s . ReturnPathArn = & v
return s
}
// SetSource sets the Source field's value.
func ( s * SendRawEmailInput ) SetSource ( v string ) * SendRawEmailInput {
s . Source = & v
return s
}
// SetSourceArn sets the SourceArn field's value.
func ( s * SendRawEmailInput ) SetSourceArn ( v string ) * SendRawEmailInput {
s . SourceArn = & v
return s
}
// SetTags sets the Tags field's value.
func ( s * SendRawEmailInput ) SetTags ( v [ ] * MessageTag ) * SendRawEmailInput {
s . Tags = v
return s
}
2016-07-15 15:49:02 +02:00
// Represents a unique message ID.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SendRawEmailResponse
2016-06-26 23:07:14 +02:00
type SendRawEmailOutput struct {
_ struct { } ` type:"structure" `
// The unique message identifier returned from the SendRawEmail action.
2016-10-17 23:21:08 +02:00
//
// MessageId is a required field
2016-06-26 23:07:14 +02:00
MessageId * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s SendRawEmailOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SendRawEmailOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetMessageId sets the MessageId field's value.
func ( s * SendRawEmailOutput ) SetMessageId ( v string ) * SendRawEmailOutput {
s . MessageId = & v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetActiveReceiptRuleSetRequest
2016-06-26 23:07:14 +02:00
type SetActiveReceiptRuleSetInput struct {
_ struct { } ` type:"structure" `
// The name of the receipt rule set to make active. Setting this value to null
// disables all email receiving.
RuleSetName * string ` type:"string" `
}
// String returns the string representation
func ( s SetActiveReceiptRuleSetInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SetActiveReceiptRuleSetInput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetRuleSetName sets the RuleSetName field's value.
func ( s * SetActiveReceiptRuleSetInput ) SetRuleSetName ( v string ) * SetActiveReceiptRuleSetInput {
s . RuleSetName = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetActiveReceiptRuleSetResponse
2016-06-26 23:07:14 +02:00
type SetActiveReceiptRuleSetOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s SetActiveReceiptRuleSetOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SetActiveReceiptRuleSetOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityDkimEnabledRequest
2016-06-26 23:07:14 +02:00
type SetIdentityDkimEnabledInput struct {
_ struct { } ` type:"structure" `
// Sets whether DKIM signing is enabled for an identity. Set to true to enable
// DKIM signing for this identity; false to disable it.
2016-10-17 23:21:08 +02:00
//
// DkimEnabled is a required field
2016-06-26 23:07:14 +02:00
DkimEnabled * bool ` type:"boolean" required:"true" `
// The identity for which DKIM signing should be enabled or disabled.
2016-10-17 23:21:08 +02:00
//
// Identity is a required field
2016-06-26 23:07:14 +02:00
Identity * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s SetIdentityDkimEnabledInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SetIdentityDkimEnabledInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * SetIdentityDkimEnabledInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "SetIdentityDkimEnabledInput" }
if s . DkimEnabled == nil {
invalidParams . Add ( request . NewErrParamRequired ( "DkimEnabled" ) )
}
if s . Identity == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Identity" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetDkimEnabled sets the DkimEnabled field's value.
func ( s * SetIdentityDkimEnabledInput ) SetDkimEnabled ( v bool ) * SetIdentityDkimEnabledInput {
s . DkimEnabled = & v
return s
}
// SetIdentity sets the Identity field's value.
func ( s * SetIdentityDkimEnabledInput ) SetIdentity ( v string ) * SetIdentityDkimEnabledInput {
s . Identity = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityDkimEnabledResponse
2016-06-26 23:07:14 +02:00
type SetIdentityDkimEnabledOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s SetIdentityDkimEnabledOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SetIdentityDkimEnabledOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityFeedbackForwardingEnabledRequest
2016-06-26 23:07:14 +02:00
type SetIdentityFeedbackForwardingEnabledInput struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// ForwardingEnabled is a required field
2016-06-26 23:07:14 +02:00
ForwardingEnabled * bool ` type:"boolean" required:"true" `
// The identity for which to set bounce and complaint notification forwarding.
// Examples: user@example.com, example.com.
2016-10-17 23:21:08 +02:00
//
// Identity is a required field
2016-06-26 23:07:14 +02:00
Identity * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s SetIdentityFeedbackForwardingEnabledInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SetIdentityFeedbackForwardingEnabledInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * SetIdentityFeedbackForwardingEnabledInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "SetIdentityFeedbackForwardingEnabledInput" }
if s . ForwardingEnabled == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ForwardingEnabled" ) )
}
if s . Identity == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Identity" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetForwardingEnabled sets the ForwardingEnabled field's value.
func ( s * SetIdentityFeedbackForwardingEnabledInput ) SetForwardingEnabled ( v bool ) * SetIdentityFeedbackForwardingEnabledInput {
s . ForwardingEnabled = & v
return s
}
// SetIdentity sets the Identity field's value.
func ( s * SetIdentityFeedbackForwardingEnabledInput ) SetIdentity ( v string ) * SetIdentityFeedbackForwardingEnabledInput {
s . Identity = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityFeedbackForwardingEnabledResponse
2016-06-26 23:07:14 +02:00
type SetIdentityFeedbackForwardingEnabledOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s SetIdentityFeedbackForwardingEnabledOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SetIdentityFeedbackForwardingEnabledOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityHeadersInNotificationsEnabledRequest
2016-07-15 15:49:02 +02:00
type SetIdentityHeadersInNotificationsEnabledInput struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// Enabled is a required field
2016-07-15 15:49:02 +02:00
Enabled * bool ` type:"boolean" required:"true" `
// The identity for which to enable or disable headers in notifications. Examples:
// user@example.com, example.com.
2016-10-17 23:21:08 +02:00
//
// Identity is a required field
2016-07-15 15:49:02 +02:00
Identity * string ` type:"string" required:"true" `
// The notification type for which to enable or disable headers in notifications.
2016-10-17 23:21:08 +02:00
//
// NotificationType is a required field
2016-07-15 15:49:02 +02:00
NotificationType * string ` type:"string" required:"true" enum:"NotificationType" `
}
// String returns the string representation
func ( s SetIdentityHeadersInNotificationsEnabledInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SetIdentityHeadersInNotificationsEnabledInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * SetIdentityHeadersInNotificationsEnabledInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "SetIdentityHeadersInNotificationsEnabledInput" }
if s . Enabled == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Enabled" ) )
}
if s . Identity == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Identity" ) )
}
if s . NotificationType == nil {
invalidParams . Add ( request . NewErrParamRequired ( "NotificationType" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEnabled sets the Enabled field's value.
func ( s * SetIdentityHeadersInNotificationsEnabledInput ) SetEnabled ( v bool ) * SetIdentityHeadersInNotificationsEnabledInput {
s . Enabled = & v
return s
}
// SetIdentity sets the Identity field's value.
func ( s * SetIdentityHeadersInNotificationsEnabledInput ) SetIdentity ( v string ) * SetIdentityHeadersInNotificationsEnabledInput {
s . Identity = & v
return s
}
// SetNotificationType sets the NotificationType field's value.
func ( s * SetIdentityHeadersInNotificationsEnabledInput ) SetNotificationType ( v string ) * SetIdentityHeadersInNotificationsEnabledInput {
s . NotificationType = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityHeadersInNotificationsEnabledResponse
2016-07-15 15:49:02 +02:00
type SetIdentityHeadersInNotificationsEnabledOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s SetIdentityHeadersInNotificationsEnabledOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SetIdentityHeadersInNotificationsEnabledOutput ) GoString ( ) string {
return s . String ( )
}
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityMailFromDomainRequest
2016-07-15 15:49:02 +02:00
type SetIdentityMailFromDomainInput struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// Identity is a required field
2016-07-15 15:49:02 +02:00
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" `
}
// String returns the string representation
func ( s SetIdentityMailFromDomainInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SetIdentityMailFromDomainInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * SetIdentityMailFromDomainInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "SetIdentityMailFromDomainInput" }
if s . Identity == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Identity" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetBehaviorOnMXFailure sets the BehaviorOnMXFailure field's value.
func ( s * SetIdentityMailFromDomainInput ) SetBehaviorOnMXFailure ( v string ) * SetIdentityMailFromDomainInput {
s . BehaviorOnMXFailure = & v
return s
}
// SetIdentity sets the Identity field's value.
func ( s * SetIdentityMailFromDomainInput ) SetIdentity ( v string ) * SetIdentityMailFromDomainInput {
s . Identity = & v
return s
}
// SetMailFromDomain sets the MailFromDomain field's value.
func ( s * SetIdentityMailFromDomainInput ) SetMailFromDomain ( v string ) * SetIdentityMailFromDomainInput {
s . MailFromDomain = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityMailFromDomainResponse
2016-07-15 15:49:02 +02:00
type SetIdentityMailFromDomainOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s SetIdentityMailFromDomainOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SetIdentityMailFromDomainOutput ) GoString ( ) string {
return s . String ( )
}
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityNotificationTopicRequest
2016-06-26 23:07:14 +02:00
type SetIdentityNotificationTopicInput struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// Identity is a required field
2016-06-26 23:07:14 +02:00
Identity * string ` type:"string" required:"true" `
// The type of notifications that will be published to the specified Amazon
// SNS topic.
2016-10-17 23:21:08 +02:00
//
// NotificationType is a required field
2016-06-26 23:07:14 +02:00
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" `
}
// String returns the string representation
func ( s SetIdentityNotificationTopicInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SetIdentityNotificationTopicInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * SetIdentityNotificationTopicInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "SetIdentityNotificationTopicInput" }
if s . Identity == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Identity" ) )
}
if s . NotificationType == nil {
invalidParams . Add ( request . NewErrParamRequired ( "NotificationType" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetIdentity sets the Identity field's value.
func ( s * SetIdentityNotificationTopicInput ) SetIdentity ( v string ) * SetIdentityNotificationTopicInput {
s . Identity = & v
return s
}
// SetNotificationType sets the NotificationType field's value.
func ( s * SetIdentityNotificationTopicInput ) SetNotificationType ( v string ) * SetIdentityNotificationTopicInput {
s . NotificationType = & v
return s
}
// SetSnsTopic sets the SnsTopic field's value.
func ( s * SetIdentityNotificationTopicInput ) SetSnsTopic ( v string ) * SetIdentityNotificationTopicInput {
s . SnsTopic = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetIdentityNotificationTopicResponse
2016-06-26 23:07:14 +02:00
type SetIdentityNotificationTopicOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s SetIdentityNotificationTopicOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SetIdentityNotificationTopicOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetReceiptRulePositionRequest
2016-06-26 23:07:14 +02:00
type SetReceiptRulePositionInput struct {
_ struct { } ` type:"structure" `
// 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.
2016-10-17 23:21:08 +02:00
//
// RuleName is a required field
2016-06-26 23:07:14 +02:00
RuleName * string ` type:"string" required:"true" `
// The name of the receipt rule set that contains the receipt rule to reposition.
2016-10-17 23:21:08 +02:00
//
// RuleSetName is a required field
2016-06-26 23:07:14 +02:00
RuleSetName * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s SetReceiptRulePositionInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SetReceiptRulePositionInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * SetReceiptRulePositionInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "SetReceiptRulePositionInput" }
if s . RuleName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RuleName" ) )
}
if s . RuleSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RuleSetName" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetAfter sets the After field's value.
func ( s * SetReceiptRulePositionInput ) SetAfter ( v string ) * SetReceiptRulePositionInput {
s . After = & v
return s
}
// SetRuleName sets the RuleName field's value.
func ( s * SetReceiptRulePositionInput ) SetRuleName ( v string ) * SetReceiptRulePositionInput {
s . RuleName = & v
return s
}
// SetRuleSetName sets the RuleSetName field's value.
func ( s * SetReceiptRulePositionInput ) SetRuleSetName ( v string ) * SetReceiptRulePositionInput {
s . RuleSetName = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/SetReceiptRulePositionResponse
2016-06-26 23:07:14 +02:00
type SetReceiptRulePositionOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s SetReceiptRulePositionOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s SetReceiptRulePositionOutput ) GoString ( ) string {
return s . String ( )
}
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/StopAction
2016-06-26 23:07:14 +02:00
type StopAction struct {
_ struct { } ` type:"structure" `
// The scope to which the Stop action applies. That is, what is being stopped.
2016-10-17 23:21:08 +02:00
//
// Scope is a required field
2016-06-26 23:07:14 +02:00
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" `
}
// String returns the string representation
func ( s StopAction ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s StopAction ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * StopAction ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "StopAction" }
if s . Scope == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Scope" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetScope sets the Scope field's value.
func ( s * StopAction ) SetScope ( v string ) * StopAction {
s . Scope = & v
return s
}
// SetTopicArn sets the TopicArn field's value.
func ( s * StopAction ) SetTopicArn ( v string ) * StopAction {
s . TopicArn = & v
return s
}
// Represents a request to update the event destination of a configuration set.
// Configuration sets enable you to publish email sending events. For information
// about using configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/UpdateConfigurationSetEventDestinationRequest
2016-11-19 19:41:01 +01:00
type UpdateConfigurationSetEventDestinationInput struct {
_ struct { } ` type:"structure" `
// The name of the configuration set that you want to update.
//
// ConfigurationSetName is a required field
ConfigurationSetName * string ` type:"string" required:"true" `
// The event destination object that you want to apply to the specified configuration
// set.
//
// EventDestination is a required field
EventDestination * EventDestination ` type:"structure" required:"true" `
}
// String returns the string representation
func ( s UpdateConfigurationSetEventDestinationInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateConfigurationSetEventDestinationInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * UpdateConfigurationSetEventDestinationInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "UpdateConfigurationSetEventDestinationInput" }
if s . ConfigurationSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ConfigurationSetName" ) )
}
if s . EventDestination == nil {
invalidParams . Add ( request . NewErrParamRequired ( "EventDestination" ) )
}
if s . EventDestination != nil {
if err := s . EventDestination . Validate ( ) ; err != nil {
invalidParams . AddNested ( "EventDestination" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetConfigurationSetName sets the ConfigurationSetName field's value.
func ( s * UpdateConfigurationSetEventDestinationInput ) SetConfigurationSetName ( v string ) * UpdateConfigurationSetEventDestinationInput {
s . ConfigurationSetName = & v
return s
}
// SetEventDestination sets the EventDestination field's value.
func ( s * UpdateConfigurationSetEventDestinationInput ) SetEventDestination ( v * EventDestination ) * UpdateConfigurationSetEventDestinationInput {
s . EventDestination = v
return s
}
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/UpdateConfigurationSetEventDestinationResponse
2016-11-19 19:41:01 +01:00
type UpdateConfigurationSetEventDestinationOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s UpdateConfigurationSetEventDestinationOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateConfigurationSetEventDestinationOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/UpdateReceiptRuleRequest
2016-06-26 23:07:14 +02:00
type UpdateReceiptRuleInput struct {
_ struct { } ` type:"structure" `
// A data structure that contains the updated receipt rule information.
2016-10-17 23:21:08 +02:00
//
// Rule is a required field
2016-06-26 23:07:14 +02:00
Rule * ReceiptRule ` type:"structure" required:"true" `
// The name of the receipt rule set to which the receipt rule belongs.
2016-10-17 23:21:08 +02:00
//
// RuleSetName is a required field
2016-06-26 23:07:14 +02:00
RuleSetName * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s UpdateReceiptRuleInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateReceiptRuleInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * UpdateReceiptRuleInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "UpdateReceiptRuleInput" }
if s . Rule == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Rule" ) )
}
if s . RuleSetName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RuleSetName" ) )
}
if s . Rule != nil {
if err := s . Rule . Validate ( ) ; err != nil {
invalidParams . AddNested ( "Rule" , err . ( request . ErrInvalidParams ) )
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetRule sets the Rule field's value.
func ( s * UpdateReceiptRuleInput ) SetRule ( v * ReceiptRule ) * UpdateReceiptRuleInput {
s . Rule = v
return s
}
// SetRuleSetName sets the RuleSetName field's value.
func ( s * UpdateReceiptRuleInput ) SetRuleSetName ( v string ) * UpdateReceiptRuleInput {
s . RuleSetName = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/UpdateReceiptRuleResponse
2016-06-26 23:07:14 +02:00
type UpdateReceiptRuleOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s UpdateReceiptRuleOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateReceiptRuleOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyDomainDkimRequest
2016-06-26 23:07:14 +02:00
type VerifyDomainDkimInput struct {
_ struct { } ` type:"structure" `
// The name of the domain to be verified for Easy DKIM signing.
2016-10-17 23:21:08 +02:00
//
// Domain is a required field
2016-06-26 23:07:14 +02:00
Domain * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s VerifyDomainDkimInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s VerifyDomainDkimInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * VerifyDomainDkimInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "VerifyDomainDkimInput" }
if s . Domain == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Domain" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetDomain sets the Domain field's value.
func ( s * VerifyDomainDkimInput ) SetDomain ( v string ) * VerifyDomainDkimInput {
s . Domain = & v
return s
}
2016-07-15 15:49:02 +02:00
// Returns CNAME records that you must publish to the DNS server of your domain
// to set up Easy DKIM with Amazon SES.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyDomainDkimResponse
2016-06-26 23:07:14 +02:00
type VerifyDomainDkimOutput struct {
_ struct { } ` type:"structure" `
// 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).
2016-10-17 23:21:08 +02:00
//
// DkimTokens is a required field
2016-06-26 23:07:14 +02:00
DkimTokens [ ] * string ` type:"list" required:"true" `
}
// String returns the string representation
func ( s VerifyDomainDkimOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s VerifyDomainDkimOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetDkimTokens sets the DkimTokens field's value.
func ( s * VerifyDomainDkimOutput ) SetDkimTokens ( v [ ] * string ) * VerifyDomainDkimOutput {
s . DkimTokens = v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyDomainIdentityRequest
2016-06-26 23:07:14 +02:00
type VerifyDomainIdentityInput struct {
_ struct { } ` type:"structure" `
// The domain to be verified.
2016-10-17 23:21:08 +02:00
//
// Domain is a required field
2016-06-26 23:07:14 +02:00
Domain * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s VerifyDomainIdentityInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s VerifyDomainIdentityInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * VerifyDomainIdentityInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "VerifyDomainIdentityInput" }
if s . Domain == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Domain" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetDomain sets the Domain field's value.
func ( s * VerifyDomainIdentityInput ) SetDomain ( v string ) * VerifyDomainIdentityInput {
s . Domain = & v
return s
}
2016-07-15 15:49:02 +02:00
// Returns a TXT record that you must publish to the DNS server of your domain
// to complete domain verification with Amazon SES.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyDomainIdentityResponse
2016-06-26 23:07:14 +02:00
type VerifyDomainIdentityOutput struct {
_ struct { } ` type:"structure" `
// A TXT record that must be placed in the DNS settings for the domain, in order
// to complete domain verification.
2016-10-17 23:21:08 +02:00
//
// VerificationToken is a required field
2016-06-26 23:07:14 +02:00
VerificationToken * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s VerifyDomainIdentityOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s VerifyDomainIdentityOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetVerificationToken sets the VerificationToken field's value.
func ( s * VerifyDomainIdentityOutput ) SetVerificationToken ( v string ) * VerifyDomainIdentityOutput {
s . VerificationToken = & v
return s
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyEmailAddressRequest
2016-06-26 23:07:14 +02:00
type VerifyEmailAddressInput struct {
_ struct { } ` type:"structure" `
// The email address to be verified.
2016-10-17 23:21:08 +02:00
//
// EmailAddress is a required field
2016-06-26 23:07:14 +02:00
EmailAddress * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s VerifyEmailAddressInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s VerifyEmailAddressInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * VerifyEmailAddressInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "VerifyEmailAddressInput" }
if s . EmailAddress == nil {
invalidParams . Add ( request . NewErrParamRequired ( "EmailAddress" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEmailAddress sets the EmailAddress field's value.
func ( s * VerifyEmailAddressInput ) SetEmailAddress ( v string ) * VerifyEmailAddressInput {
s . EmailAddress = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyEmailAddressOutput
2016-06-26 23:07:14 +02:00
type VerifyEmailAddressOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s VerifyEmailAddressOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s VerifyEmailAddressOutput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyEmailIdentityRequest
2016-06-26 23:07:14 +02:00
type VerifyEmailIdentityInput struct {
_ struct { } ` type:"structure" `
// The email address to be verified.
2016-10-17 23:21:08 +02:00
//
// EmailAddress is a required field
2016-06-26 23:07:14 +02:00
EmailAddress * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s VerifyEmailIdentityInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s VerifyEmailIdentityInput ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * VerifyEmailIdentityInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "VerifyEmailIdentityInput" }
if s . EmailAddress == nil {
invalidParams . Add ( request . NewErrParamRequired ( "EmailAddress" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEmailAddress sets the EmailAddress field's value.
func ( s * VerifyEmailIdentityInput ) SetEmailAddress ( v string ) * VerifyEmailIdentityInput {
s . EmailAddress = & v
return s
}
2016-07-15 15:49:02 +02:00
// An empty element returned on a successful request.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyEmailIdentityResponse
2016-06-26 23:07:14 +02:00
type VerifyEmailIdentityOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s VerifyEmailIdentityOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s VerifyEmailIdentityOutput ) GoString ( ) string {
return s . String ( )
}
// 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).
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/WorkmailAction
2016-06-26 23:07:14 +02:00
type WorkmailAction struct {
_ struct { } ` type:"structure" `
// 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).
2016-10-17 23:21:08 +02:00
//
// OrganizationArn is a required field
2016-06-26 23:07:14 +02:00
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" `
}
// String returns the string representation
func ( s WorkmailAction ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s WorkmailAction ) GoString ( ) string {
return s . String ( )
}
2016-07-15 15:49:02 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * WorkmailAction ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "WorkmailAction" }
if s . OrganizationArn == nil {
invalidParams . Add ( request . NewErrParamRequired ( "OrganizationArn" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetOrganizationArn sets the OrganizationArn field's value.
func ( s * WorkmailAction ) SetOrganizationArn ( v string ) * WorkmailAction {
s . OrganizationArn = & v
return s
}
// SetTopicArn sets the TopicArn field's value.
func ( s * WorkmailAction ) SetTopicArn ( v string ) * WorkmailAction {
s . TopicArn = & v
return s
}
2016-07-15 15:49:02 +02:00
const (
2016-10-17 23:21:08 +02:00
// BehaviorOnMXFailureUseDefaultValue is a BehaviorOnMXFailure enum value
2016-07-15 15:49:02 +02:00
BehaviorOnMXFailureUseDefaultValue = "UseDefaultValue"
2016-10-17 23:21:08 +02:00
// BehaviorOnMXFailureRejectMessage is a BehaviorOnMXFailure enum value
2016-07-15 15:49:02 +02:00
BehaviorOnMXFailureRejectMessage = "RejectMessage"
)
2016-06-26 23:07:14 +02:00
const (
2016-10-17 23:21:08 +02:00
// BounceTypeDoesNotExist is a BounceType enum value
2016-06-26 23:07:14 +02:00
BounceTypeDoesNotExist = "DoesNotExist"
2016-10-17 23:21:08 +02:00
// BounceTypeMessageTooLarge is a BounceType enum value
2016-06-26 23:07:14 +02:00
BounceTypeMessageTooLarge = "MessageTooLarge"
2016-10-17 23:21:08 +02:00
// BounceTypeExceededQuota is a BounceType enum value
2016-06-26 23:07:14 +02:00
BounceTypeExceededQuota = "ExceededQuota"
2016-10-17 23:21:08 +02:00
// BounceTypeContentRejected is a BounceType enum value
2016-06-26 23:07:14 +02:00
BounceTypeContentRejected = "ContentRejected"
2016-10-17 23:21:08 +02:00
// BounceTypeUndefined is a BounceType enum value
2016-06-26 23:07:14 +02:00
BounceTypeUndefined = "Undefined"
2016-10-17 23:21:08 +02:00
// BounceTypeTemporaryFailure is a BounceType enum value
2016-06-26 23:07:14 +02:00
BounceTypeTemporaryFailure = "TemporaryFailure"
)
2016-11-19 19:41:01 +01:00
const (
// ConfigurationSetAttributeEventDestinations is a ConfigurationSetAttribute enum value
ConfigurationSetAttributeEventDestinations = "eventDestinations"
)
2016-07-15 15:49:02 +02:00
const (
2016-10-17 23:21:08 +02:00
// CustomMailFromStatusPending is a CustomMailFromStatus enum value
2016-07-15 15:49:02 +02:00
CustomMailFromStatusPending = "Pending"
2016-10-17 23:21:08 +02:00
// CustomMailFromStatusSuccess is a CustomMailFromStatus enum value
2016-07-15 15:49:02 +02:00
CustomMailFromStatusSuccess = "Success"
2016-10-17 23:21:08 +02:00
// CustomMailFromStatusFailed is a CustomMailFromStatus enum value
2016-07-15 15:49:02 +02:00
CustomMailFromStatusFailed = "Failed"
2016-10-17 23:21:08 +02:00
// CustomMailFromStatusTemporaryFailure is a CustomMailFromStatus enum value
2016-07-15 15:49:02 +02:00
CustomMailFromStatusTemporaryFailure = "TemporaryFailure"
)
2016-11-19 19:41:01 +01:00
const (
// DimensionValueSourceMessageTag is a DimensionValueSource enum value
DimensionValueSourceMessageTag = "messageTag"
// DimensionValueSourceEmailHeader is a DimensionValueSource enum value
DimensionValueSourceEmailHeader = "emailHeader"
)
2016-06-26 23:07:14 +02:00
const (
2016-10-17 23:21:08 +02:00
// DsnActionFailed is a DsnAction enum value
2016-06-26 23:07:14 +02:00
DsnActionFailed = "failed"
2016-10-17 23:21:08 +02:00
// DsnActionDelayed is a DsnAction enum value
2016-06-26 23:07:14 +02:00
DsnActionDelayed = "delayed"
2016-10-17 23:21:08 +02:00
// DsnActionDelivered is a DsnAction enum value
2016-06-26 23:07:14 +02:00
DsnActionDelivered = "delivered"
2016-10-17 23:21:08 +02:00
// DsnActionRelayed is a DsnAction enum value
2016-06-26 23:07:14 +02:00
DsnActionRelayed = "relayed"
2016-10-17 23:21:08 +02:00
// DsnActionExpanded is a DsnAction enum value
2016-06-26 23:07:14 +02:00
DsnActionExpanded = "expanded"
)
2016-11-19 19:41:01 +01:00
const (
// EventTypeSend is a EventType enum value
EventTypeSend = "send"
// EventTypeReject is a EventType enum value
EventTypeReject = "reject"
// EventTypeBounce is a EventType enum value
EventTypeBounce = "bounce"
// EventTypeComplaint is a EventType enum value
EventTypeComplaint = "complaint"
// EventTypeDelivery is a EventType enum value
EventTypeDelivery = "delivery"
)
2016-06-26 23:07:14 +02:00
const (
2016-10-17 23:21:08 +02:00
// IdentityTypeEmailAddress is a IdentityType enum value
2016-06-26 23:07:14 +02:00
IdentityTypeEmailAddress = "EmailAddress"
2016-10-17 23:21:08 +02:00
// IdentityTypeDomain is a IdentityType enum value
2016-06-26 23:07:14 +02:00
IdentityTypeDomain = "Domain"
)
const (
2016-10-17 23:21:08 +02:00
// InvocationTypeEvent is a InvocationType enum value
2016-06-26 23:07:14 +02:00
InvocationTypeEvent = "Event"
2016-10-17 23:21:08 +02:00
// InvocationTypeRequestResponse is a InvocationType enum value
2016-06-26 23:07:14 +02:00
InvocationTypeRequestResponse = "RequestResponse"
)
const (
2016-10-17 23:21:08 +02:00
// NotificationTypeBounce is a NotificationType enum value
2016-06-26 23:07:14 +02:00
NotificationTypeBounce = "Bounce"
2016-10-17 23:21:08 +02:00
// NotificationTypeComplaint is a NotificationType enum value
2016-06-26 23:07:14 +02:00
NotificationTypeComplaint = "Complaint"
2016-10-17 23:21:08 +02:00
// NotificationTypeDelivery is a NotificationType enum value
2016-06-26 23:07:14 +02:00
NotificationTypeDelivery = "Delivery"
)
const (
2016-10-17 23:21:08 +02:00
// ReceiptFilterPolicyBlock is a ReceiptFilterPolicy enum value
2016-06-26 23:07:14 +02:00
ReceiptFilterPolicyBlock = "Block"
2016-10-17 23:21:08 +02:00
// ReceiptFilterPolicyAllow is a ReceiptFilterPolicy enum value
2016-06-26 23:07:14 +02:00
ReceiptFilterPolicyAllow = "Allow"
)
2016-07-15 15:49:02 +02:00
const (
2016-10-17 23:21:08 +02:00
// SNSActionEncodingUtf8 is a SNSActionEncoding enum value
2016-07-15 15:49:02 +02:00
SNSActionEncodingUtf8 = "UTF-8"
2016-10-17 23:21:08 +02:00
// SNSActionEncodingBase64 is a SNSActionEncoding enum value
2016-07-15 15:49:02 +02:00
SNSActionEncodingBase64 = "Base64"
)
2016-06-26 23:07:14 +02:00
const (
2016-10-17 23:21:08 +02:00
// StopScopeRuleSet is a StopScope enum value
2016-06-26 23:07:14 +02:00
StopScopeRuleSet = "RuleSet"
)
const (
2016-10-17 23:21:08 +02:00
// TlsPolicyRequire is a TlsPolicy enum value
2016-06-26 23:07:14 +02:00
TlsPolicyRequire = "Require"
2016-10-17 23:21:08 +02:00
// TlsPolicyOptional is a TlsPolicy enum value
2016-06-26 23:07:14 +02:00
TlsPolicyOptional = "Optional"
)
const (
2016-10-17 23:21:08 +02:00
// VerificationStatusPending is a VerificationStatus enum value
2016-06-26 23:07:14 +02:00
VerificationStatusPending = "Pending"
2016-10-17 23:21:08 +02:00
// VerificationStatusSuccess is a VerificationStatus enum value
2016-06-26 23:07:14 +02:00
VerificationStatusSuccess = "Success"
2016-10-17 23:21:08 +02:00
// VerificationStatusFailed is a VerificationStatus enum value
2016-06-26 23:07:14 +02:00
VerificationStatusFailed = "Failed"
2016-10-17 23:21:08 +02:00
// VerificationStatusTemporaryFailure is a VerificationStatus enum value
2016-06-26 23:07:14 +02:00
VerificationStatusTemporaryFailure = "TemporaryFailure"
2016-10-17 23:21:08 +02:00
// VerificationStatusNotStarted is a VerificationStatus enum value
2016-06-26 23:07:14 +02:00
VerificationStatusNotStarted = "NotStarted"
)