Jump to Content

New API Documentation - Developer Preview Available

We are excited to announce the developer preview of our new API documentation for AWS SDK for JavaScript v3. Please follow instructions on the landing page to leave us your feedback.

Class PutConfigurationSetDeliveryOptionsCommandProtected

Associate a configuration set with a dedicated IP pool. You can use dedicated IP pools to create groups of dedicated IP addresses for sending specific types of email.

Example

Use a bare-bones client and the command you need to make an API call.

import { PinpointEmailClient, PutConfigurationSetDeliveryOptionsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import
// const { PinpointEmailClient, PutConfigurationSetDeliveryOptionsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import
const client = new PinpointEmailClient(config);
const input = { // PutConfigurationSetDeliveryOptionsRequest
ConfigurationSetName: "STRING_VALUE", // required
TlsPolicy: "STRING_VALUE",
SendingPoolName: "STRING_VALUE",
};
const command = new PutConfigurationSetDeliveryOptionsCommand(input);
const response = await client.send(command);
// {};

Param

PutConfigurationSetDeliveryOptionsCommandInput

Returns

PutConfigurationSetDeliveryOptionsCommandOutput

See

Throws

BadRequestException (client fault)

The input you provided is invalid.

Throws

NotFoundException (client fault)

The resource you attempted to access doesn't exist.

Throws

TooManyRequestsException (client fault)

Too many requests have been made to the operation.

Throws

PinpointEmailServiceException

Base exception class for all service exceptions from PinpointEmail service.

Hierarchy

Constructors

Properties

Methods