kinesis:RemoveTagsFromStream

Tagging

kinesis:RemoveTagsFromStream is a Tagging access-level action in the kinesis service. Grants permission to remove tags from the specified Kinesis data stream. Removed tags are deleted and cannot be recovered after this operation successfully completes

Resource types

ARNs that kinesis:RemoveTagsFromStream can be scoped to in an IAM policy.

arn:${Partition}:kinesis:${Region}:${Account}:stream/${StreamName}
stream

Condition keys

Keys you can use in the Condition block of a policy that grants kinesis:RemoveTagsFromStream.

aws:ResourceTag/${TagKey} String

Filters access by tag key-value pairs attached to the resource

Example IAM policy

A minimal policy that allows kinesis:RemoveTagsFromStream. Replace "Resource": "*" with a specific ARN to follow least privilege.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AllowKinesisRemoveTagsFromStream",
      "Effect": "Allow",
      "Action": "kinesis:RemoveTagsFromStream",
      "Resource": "*"
    }
  ]
}

Related actions in kinesis

View all kinesis actions →