kinesis:DeleteResourcePolicy is a Write access-level action in the kinesis service. Grants permission to delete a resource policy associated with a specified stream or consumer
ARNs that kinesis:DeleteResourcePolicy can be scoped to in an IAM policy.
Keys you can use in the Condition block of a policy that grants kinesis:DeleteResourcePolicy.
Filters access by tag key-value pairs attached to the resource
A minimal policy that allows kinesis:DeleteResourcePolicy. Replace "Resource": "*" with a specific ARN to follow least privilege.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowKinesisDeleteResourcePolicy",
"Effect": "Allow",
"Action": "kinesis:DeleteResourcePolicy",
"Resource": "*"
}
]
}