PutAccountAliasCommand

Creates or updates an individual alias for each Amazon Web Services account ID. The alias appears in the Amazon Web Services Support App page of the Amazon Web Services Support Center. The alias also appears in Slack messages from the Amazon Web Services Support App.

Example Syntax

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

import { SupportAppClient, PutAccountAliasCommand } from "@aws-sdk/client-support-app"; // ES Modules import
// const { SupportAppClient, PutAccountAliasCommand } = require("@aws-sdk/client-support-app"); // CommonJS import
const client = new SupportAppClient(config);
const input = { // PutAccountAliasRequest
  accountAlias: "STRING_VALUE", // required
};
const command = new PutAccountAliasCommand(input);
const response = await client.send(command);
// {};

PutAccountAliasCommand Input

See PutAccountAliasCommandInput for more details

Parameter
Type
Description
accountAlias
Required
string | undefined

An alias or short name for an Amazon Web Services account.

PutAccountAliasCommand Output

Parameter
Type
Description
$metadata
Required
ResponseMetadata
Metadata pertaining to this request.

Throws

Name
Fault
Details
AccessDeniedException
client

You don't have sufficient permission to perform this action.

InternalServerException
server

We can’t process your request right now because of a server issue. Try again later.

ValidationException
client

Your request input doesn't meet the constraints that the Amazon Web Services Support App specifies.

SupportAppServiceException
Base exception class for all service exceptions from SupportApp service.