Class: Aws::APIGateway::Types::GetTagsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetTagsRequest
- Defined in:
- gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetTagsRequest data as a hash:
{
resource_arn: "String", # required
position: "String",
limit: 1,
}
Gets the Tags collection for a given resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#limit ⇒ Integer
(Not currently supported) The maximum number of returned results per page.
-
#position ⇒ String
(Not currently supported) The current pagination position in the paged result set.
-
#resource_arn ⇒ String
The ARN of a resource that can be tagged.
Instance Attribute Details
#limit ⇒ Integer
(Not currently supported) The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
3826 3827 3828 3829 3830 3831 3832 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 3826 class GetTagsRequest < Struct.new( :resource_arn, :position, :limit) SENSITIVE = [] include Aws::Structure end |
#position ⇒ String
(Not currently supported) The current pagination position in the paged result set.
3826 3827 3828 3829 3830 3831 3832 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 3826 class GetTagsRequest < Struct.new( :resource_arn, :position, :limit) SENSITIVE = [] include Aws::Structure end |
#resource_arn ⇒ String
The ARN of a resource that can be tagged.
3826 3827 3828 3829 3830 3831 3832 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 3826 class GetTagsRequest < Struct.new( :resource_arn, :position, :limit) SENSITIVE = [] include Aws::Structure end |