DeleteTags - AWS Application Discovery Service

DeleteTags

Deletes the association between configuration items and one or more tags. This API accepts a list of multiple configuration items.

Request Syntax

{ "configurationIds": [ "string" ], "tags": [ { "key": "string", "value": "string" } ] }

Request Parameters

For information about the parameters that are common to all actions, see Common Parameters.

The request accepts the following data in JSON format.

configurationIds

A list of configuration items with tags that you want to delete.

Type: Array of strings

Length Constraints: Maximum length of 200.

Pattern: \S*

Required: Yes

tags

Tags that you want to delete from one or more configuration items. Specify the tags that you want to delete in a key-value format. For example:

{"key": "serverType", "value": "webServer"}

Type: Array of Tag objects

Required: No

Response Elements

If the action is successful, the service sends back an HTTP 200 response with an empty HTTP body.

Errors

For information about the errors that are common to all actions, see Common Errors.

AuthorizationErrorException

The user does not have permission to perform the action. Check the IAM policy associated with this user.

HTTP Status Code: 400

HomeRegionNotSetException

The home Region is not set. Set the home Region to continue.

HTTP Status Code: 400

InvalidParameterException

One or more parameters are not valid. Verify the parameters and try again.

HTTP Status Code: 400

InvalidParameterValueException

The value of one or more parameters are either invalid or out of range. Verify the parameter values and try again.

HTTP Status Code: 400

ResourceNotFoundException

The specified configuration ID was not located. Verify the configuration ID and try again.

HTTP Status Code: 400

ServerInternalErrorException

The server experienced an internal error. Try again.

HTTP Status Code: 500

Examples

Delete tags

The following example deletes a tag, identified by its key/value pair in the tags parameter, from the server specified by the value passed to the configurationIds parameter in the request.

Sample Request

{ "configurationIds": [ "d-server-08a4bce106f63340e" ], "tags": [ { "key": "ServerHostType", "value": "OracleProdDB" } ] }

See Also

For more information about using this API in one of the language-specific AWS SDKs, see the following: