Class: Aws::KinesisVideo::Types::ListTagsForResourceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisVideo::Types::ListTagsForResourceInput
- Defined in:
- gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb
Overview
Note:
When making an API call, you may pass ListTagsForResourceInput data as a hash:
{
next_token: "NextToken",
resource_arn: "ResourceARN", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If you specify this parameter and the result of a
ListTagsForResource
call is truncated, the response includes a token that you can use in the next request to fetch the next batch of tags. -
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the signaling channel for which you want to list tags.
Instance Attribute Details
#next_token ⇒ String
If you specify this parameter and the result of a
ListTagsForResource
call is truncated, the response includes a
token that you can use in the next request to fetch the next batch
of tags.
737 738 739 740 741 742 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 737 class ListTagsForResourceInput < Struct.new( :next_token, :resource_arn) SENSITIVE = [] include Aws::Structure end |
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the signaling channel for which you want to list tags.
737 738 739 740 741 742 |
# File 'gems/aws-sdk-kinesisvideo/lib/aws-sdk-kinesisvideo/types.rb', line 737 class ListTagsForResourceInput < Struct.new( :next_token, :resource_arn) SENSITIVE = [] include Aws::Structure end |