- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
PutEmailIdentityConfigurationSetAttributesCommand
Used to associate a configuration set with an email identity.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { SESv2Client, PutEmailIdentityConfigurationSetAttributesCommand } from "@aws-sdk/client-sesv2"; // ES Modules import
// const { SESv2Client, PutEmailIdentityConfigurationSetAttributesCommand } = require("@aws-sdk/client-sesv2"); // CommonJS import
const client = new SESv2Client(config);
const input = { // PutEmailIdentityConfigurationSetAttributesRequest
EmailIdentity: "STRING_VALUE", // required
ConfigurationSetName: "STRING_VALUE",
};
const command = new PutEmailIdentityConfigurationSetAttributesCommand(input);
const response = await client.send(command);
// {};
PutEmailIdentityConfigurationSetAttributesCommand Input
See PutEmailIdentityConfigurationSetAttributesCommandInput for more details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
EmailIdentity Required | string | undefined | The email address or domain to associate with a configuration set. |
ConfigurationSetName | string | undefined | The configuration set to associate with an email identity. |
PutEmailIdentityConfigurationSetAttributesCommand Output
See PutEmailIdentityConfigurationSetAttributesCommandOutput for details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
BadRequestException | client | The input you provided is invalid. |
NotFoundException | client | The resource you attempted to access doesn't exist. |
TooManyRequestsException | client | Too many requests have been made to the operation. |
SESv2ServiceException | Base exception class for all service exceptions from SESv2 service. |