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