paws.management (version 0.1.0)

autoscaling_describe_tags: Describes the specified tags

Description

Describes the specified tags.

Usage

autoscaling_describe_tags(Filters, NextToken, MaxRecords)

Arguments

Filters

One or more filters to scope the tags to return. The maximum number of filters per filter type (for example, auto-scaling-group) is 1000.

NextToken

The token for the next set of items to return. (You received this token from a previous call.)

MaxRecords

The maximum number of items to return with this call. The default value is 50 and the maximum value is 100.

Request syntax

svc$describe_tags(
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  ),
  NextToken = "string",
  MaxRecords = 123
)

Details

You can use filters to limit the results. For example, you can query for the tags for a specific Auto Scaling group. You can specify multiple values for a filter. A tag must match at least one of the specified values for it to be included in the results.

You can also specify multiple filters. The result includes information for a particular tag only if it matches all the filters. If there's no match, no special message is returned.

Examples

Run this code
# NOT RUN {
# This example describes the tags for the specified Auto Scaling group.
# }
# NOT RUN {
svc$describe_tags(
  Filters = list(
    list(
      Name = "auto-scaling-group",
      Values = list(
        "my-auto-scaling-group"
      )
    )
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace