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.
You can execute this operation no more than once per second.
Use a bare-bones client and the command you need to make an API call.
import { SESClient, CreateConfigurationSetCommand } from "@aws-sdk/client-ses"; // ES Modules import // const { SESClient, CreateConfigurationSetCommand } = require("@aws-sdk/client-ses"); // CommonJS import const client = new SESClient(config); const command = new CreateConfigurationSetCommand(input); const response = await client.send(command);
CreateConfigurationSetCommandInput for command's input shape.
input
CreateConfigurationSetCommandOutput for command's response shape.
response
config for SESClient's config shape.
config
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.
You can execute this operation no more than once per second.
Use a bare-bones client and the command you need to make an API call.
import { SESClient, CreateConfigurationSetCommand } from "@aws-sdk/client-ses"; // ES Modules import // const { SESClient, CreateConfigurationSetCommand } = require("@aws-sdk/client-ses"); // CommonJS import const client = new SESClient(config); const command = new CreateConfigurationSetCommand(input); const response = await client.send(command);
CreateConfigurationSetCommandInput for command's
input
shape.CreateConfigurationSetCommandOutput for command's
response
shape.config for SESClient's
config
shape.