Amazon.SimpleEmail.AmazonSimpleEmailServiceClient.CreateConfigurationSetEventDestination C# (CSharp) Method

CreateConfigurationSetEventDestination() public method

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.

This action is throttled at one request per second.

/// Indicates that the configuration set does not exist. /// /// Indicates that the event destination could not be created because of a naming conflict. /// /// Indicates that the Amazon CloudWatch destination is invalid. See the error message /// for details. /// /// Indicates that the Amazon Kinesis Firehose destination is invalid. See the error message /// for details. /// /// 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. ///
public CreateConfigurationSetEventDestination ( CreateConfigurationSetEventDestinationRequest request ) : CreateConfigurationSetEventDestinationResponse
request Amazon.SimpleEmail.Model.CreateConfigurationSetEventDestinationRequest Container for the necessary parameters to execute the CreateConfigurationSetEventDestination service method.
return CreateConfigurationSetEventDestinationResponse
        public CreateConfigurationSetEventDestinationResponse CreateConfigurationSetEventDestination(CreateConfigurationSetEventDestinationRequest request)
        {
            var marshaller = new CreateConfigurationSetEventDestinationRequestMarshaller();
            var unmarshaller = CreateConfigurationSetEventDestinationResponseUnmarshaller.Instance;

            return Invoke<CreateConfigurationSetEventDestinationRequest,CreateConfigurationSetEventDestinationResponse>(request, marshaller, unmarshaller);
        }
AmazonSimpleEmailServiceClient