Class: Aws::SES::Types::ConfigurationSet

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

Overview

Note:

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

{
  name: "ConfigurationSetName", # required
}

The name of the configuration set.

Configuration sets let you create groups of rules that you can apply to the emails you send using Amazon SES. For more information about using configuration sets, see [Using Amazon SES Configuration Sets] in the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/using-configuration-sets.html [2]: docs.aws.amazon.com/ses/latest/DeveloperGuide/

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the configuration set. The name must meet the following requirements:

  • Contain only letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).

  • Contain 64 characters or fewer.

Returns:

  • (String)


538
539
540
541
# File 'lib/aws-sdk-ses/types.rb', line 538

class ConfigurationSet < Struct.new(
  :name)
  include Aws::Structure
end