- 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.
GetIdentityPoliciesCommand
Returns the requested sending authorization policies for the given identity (an email address or a domain). The policies are returned as a map of policy names to policy contents. You can retrieve a maximum of 20 policies at a time.
This operation is for the identity owner only. If you have not verified the identity, it returns an error.
Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the Amazon SES Developer Guide .
You can execute this operation no more than once per second.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { SESClient, GetIdentityPoliciesCommand } from "@aws-sdk/client-ses"; // ES Modules import
// const { SESClient, GetIdentityPoliciesCommand } = require("@aws-sdk/client-ses"); // CommonJS import
const client = new SESClient(config);
const input = { // GetIdentityPoliciesRequest
Identity: "STRING_VALUE", // required
PolicyNames: [ // PolicyNameList // required
"STRING_VALUE",
],
};
const command = new GetIdentityPoliciesCommand(input);
const response = await client.send(command);
// { // GetIdentityPoliciesResponse
// Policies: { // PolicyMap // required
// "<keys>": "STRING_VALUE",
// },
// };
Example Usage
GetIdentityPoliciesCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
Identity Required | string | undefined | The identity for which the policies are retrieved. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: To successfully call this operation, you must own the identity. |
PolicyNames Required | string[] | undefined | A list of the names of policies to be retrieved. You can retrieve a maximum of 20 policies at a time. If you do not know the names of the policies that are attached to the identity, you can use |
GetIdentityPoliciesCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
Policies Required | Record<string, string> | undefined | A map of policy names to policies. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
SESServiceException | Base exception class for all service exceptions from SES service. |