- 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.
TagResourceCommand
Grants permission to add a tag(s) to a designated resource.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { SecurityIRClient, TagResourceCommand } from "@aws-sdk/client-security-ir"; // ES Modules import
// const { SecurityIRClient, TagResourceCommand } = require("@aws-sdk/client-security-ir"); // CommonJS import
const client = new SecurityIRClient(config);
const input = { // TagResourceInput
resourceArn: "STRING_VALUE", // required
tags: { // TagMap // required
"<keys>": "STRING_VALUE",
},
};
const command = new TagResourceCommand(input);
const response = await client.send(command);
// {};
Example Usage
Loading code editor
TagResourceCommand Input
See TagResourceCommandInput for more details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
resourceArn Required | string | undefined | Required element for TagResource to identify the ARN for the resource to add a tag to. |
tags Required | Record<string, string> | undefined | Required element for ListTagsForResource to provide the content for a tag. |
TagResourceCommand Output
See TagResourceCommandOutput for details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
AccessDeniedException | client | <p/> |
ResourceNotFoundException | client | <p/> |
ValidationException | client | <p/> |
ConflictException | client | <p/> |
InternalServerException | server | <p/> |
InvalidTokenException | client | <p/> |
SecurityIncidentResponseNotActiveException | client | <p/> |
ServiceQuotaExceededException | client | <p/> |
ThrottlingException | client | <p/> |
SecurityIRServiceException | Base exception class for all service exceptions from SecurityIR service. |