We are excited to announce our new API Documentation.
Protected
Gets a list of the tags associated with an Cloud9 development environment.
Use a bare-bones client and the command you need to make an API call.
import { Cloud9Client, ListTagsForResourceCommand } from "@aws-sdk/client-cloud9"; // ES Modules import// const { Cloud9Client, ListTagsForResourceCommand } = require("@aws-sdk/client-cloud9"); // CommonJS importconst client = new Cloud9Client(config);const input = { // ListTagsForResourceRequest ResourceARN: "STRING_VALUE", // required};const command = new ListTagsForResourceCommand(input);const response = await client.send(command);// { // ListTagsForResourceResponse// Tags: [ // TagList// { // Tag// Key: "STRING_VALUE", // required// Value: "STRING_VALUE", // required// },// ],// };
ListTagsForResourceCommandInput
ListTagsForResourceCommandOutput
input
response
config
BadRequestException (client fault)
The target request is invalid.
InternalServerErrorException (server fault)
An internal server error occurred.
NotFoundException (client fault)
The target resource cannot be found.
Cloud9ServiceException
Base exception class for all service exceptions from Cloud9 service.
Readonly
Static
Gets a list of the tags associated with an Cloud9 development environment.
Example
Use a bare-bones client and the command you need to make an API call.
Param
ListTagsForResourceCommandInput
Returns
ListTagsForResourceCommandOutput
See
input
shape.response
shape.config
shape.Throws
BadRequestException (client fault)
The target request is invalid.
Throws
InternalServerErrorException (server fault)
An internal server error occurred.
Throws
NotFoundException (client fault)
The target resource cannot be found.
Throws
Cloud9ServiceException
Base exception class for all service exceptions from Cloud9 service.