Skip to content

Delete Resource Policy

dynamodb_delete_resource_policy R Documentation

Deletes the resource-based policy attached to the resource, which can be a table or stream

Description

Deletes the resource-based policy attached to the resource, which can be a table or stream.

delete_resource_policy is an idempotent operation; running it multiple times on the same resource doesn't result in an error response, unless you specify an ExpectedRevisionId, which will then return a PolicyNotFoundException.

To make sure that you don't inadvertently lock yourself out of your own resources, the root principal in your Amazon Web Services account can perform delete_resource_policy requests, even if your resource-based policy explicitly denies the root principal's access.

delete_resource_policy is an asynchronous operation. If you issue a get_resource_policy request immediately after running the delete_resource_policy request, DynamoDB might still return the deleted policy. This is because the policy for your resource might not have been deleted yet. Wait for a few seconds, and then try the get_resource_policy request again.

Usage

dynamodb_delete_resource_policy(ResourceArn, ExpectedRevisionId)

Arguments

ResourceArn

[required] The Amazon Resource Name (ARN) of the DynamoDB resource from which the policy will be removed. The resources you can specify include tables and streams. If you remove the policy of a table, it will also remove the permissions for the table's indexes defined in that policy document. This is because index permissions are defined in the table's policy.

ExpectedRevisionId

A string value that you can use to conditionally delete your policy. When you provide an expected revision ID, if the revision ID of the existing policy on the resource doesn't match or if there's no policy attached to the resource, the request will fail and return a PolicyNotFoundException.

Value

A list with the following syntax:

list(
  RevisionId = "string"
)

Request syntax

svc$delete_resource_policy(
  ResourceArn = "string",
  ExpectedRevisionId = "string"
)