Jump to Content

This API Documentation is now deprecated

We are excited to announce our new API Documentation.

Class DeleteResourcePolicyCommandProtected

Deletes a resource policy from this account. This revokes the access of the identities in that policy to put log events to this account.

Example

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

import { CloudWatchLogsClient, DeleteResourcePolicyCommand } from "@aws-sdk/client-cloudwatch-logs"; // ES Modules import
// const { CloudWatchLogsClient, DeleteResourcePolicyCommand } = require("@aws-sdk/client-cloudwatch-logs"); // CommonJS import
const client = new CloudWatchLogsClient(config);
const input = { // DeleteResourcePolicyRequest
policyName: "STRING_VALUE",
};
const command = new DeleteResourcePolicyCommand(input);
const response = await client.send(command);
// {};

Param

DeleteResourcePolicyCommandInput

Returns

DeleteResourcePolicyCommandOutput

See

Throws

InvalidParameterException (client fault)

A parameter is specified incorrectly.

Throws

ResourceNotFoundException (client fault)

The specified resource does not exist.

Throws

ServiceUnavailableException (server fault)

The service cannot complete the request.

Throws

CloudWatchLogsServiceException

Base exception class for all service exceptions from CloudWatchLogs service.

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods