Class: Aws::Route53::Types::ListTagsForResourcesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::ListTagsForResourcesRequest
- Defined in:
- gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb
Overview
Note:
When making an API call, you may pass ListTagsForResourcesRequest data as a hash:
{
resource_type: "healthcheck", # required, accepts healthcheck, hostedzone
resource_ids: ["TagResourceId"], # required
}
A complex type that contains information about the health checks or hosted zones for which you want to list tags.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_ids ⇒ Array<String>
A complex type that contains the ResourceId element for each resource for which you want to get a list of tags.
-
#resource_type ⇒ String
The type of the resources.
Instance Attribute Details
#resource_ids ⇒ Array<String>
A complex type that contains the ResourceId element for each resource for which you want to get a list of tags.
6006 6007 6008 6009 6010 6011 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 6006 class ListTagsForResourcesRequest < Struct.new( :resource_type, :resource_ids) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of the resources.
The resource type for health checks is
healthcheck
.The resource type for hosted zones is
hostedzone
.
6006 6007 6008 6009 6010 6011 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 6006 class ListTagsForResourcesRequest < Struct.new( :resource_type, :resource_ids) SENSITIVE = [] include Aws::Structure end |