Skip to content

List Associated Resources

appregistry_list_associated_resources R Documentation

Lists all of the resources that are associated with the specified application

Description

Lists all of the resources that are associated with the specified application. Results are paginated.

If you share an application, and a consumer account associates a tag query to the application, all of the users who can access the application can also view the tag values in all accounts that are associated with it using this API.

Usage

appregistry_list_associated_resources(application, nextToken,
  maxResults)

Arguments

application

[required] The name, ID, or ARN of the application.

nextToken

The token to use to get the next page of results after a previous API call.

maxResults

The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.

Value

A list with the following syntax:

list(
  resources = list(
    list(
      name = "string",
      arn = "string",
      resourceType = "CFN_STACK"|"RESOURCE_TAG_VALUE",
      resourceDetails = list(
        tagValue = "string"
      ),
      options = list(
        "APPLY_APPLICATION_TAG"|"SKIP_APPLICATION_TAG"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_associated_resources(
  application = "string",
  nextToken = "string",
  maxResults = 123
)