Skip to content

Delete Resource Policy Statement

lexmodelsv2_delete_resource_policy_statement R Documentation

Deletes a policy statement from a resource policy

Description

Deletes a policy statement from a resource policy. If you delete the last statement from a policy, the policy is deleted. If you specify a statement ID that doesn't exist in the policy, or if the bot or bot alias doesn't have a policy attached, Amazon Lex returns an exception.

You need to add the delete_resource_policy or update_resource_policy action to the bot role in order to call the API.

Usage

lexmodelsv2_delete_resource_policy_statement(resourceArn, statementId,
  expectedRevisionId)

Arguments

resourceArn

[required] The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to.

statementId

[required] The name of the statement (SID) to delete from the policy.

expectedRevisionId

The identifier of the revision of the policy to delete the statement from. If this revision ID doesn't match the current revision ID, Amazon Lex throws an exception.

If you don't specify a revision, Amazon Lex removes the current contents of the statement.

Value

A list with the following syntax:

list(
  resourceArn = "string",
  revisionId = "string"
)

Request syntax

svc$delete_resource_policy_statement(
  resourceArn = "string",
  statementId = "string",
  expectedRevisionId = "string"
)