Skip to content

List Grouping Attribute Definitions

cloudwatchapplicationsignals_list_grouping_attribute_definitions R Documentation

Returns the current grouping configuration for this account, including all custom grouping attribute definitions that have been configured

Description

Returns the current grouping configuration for this account, including all custom grouping attribute definitions that have been configured. These definitions determine how services are logically grouped based on telemetry attributes, Amazon Web Services tags, or predefined mappings.

Usage

cloudwatchapplicationsignals_list_grouping_attribute_definitions(
  NextToken, AwsAccountId, IncludeLinkedAccounts)

Arguments

NextToken

Include this value, if it was returned by the previous operation, to get the next set of grouping attribute definitions.

AwsAccountId

The Amazon Web Services account ID to retrieve grouping attribute definitions for. Use this when accessing grouping configurations from a different account in cross-account monitoring scenarios.

IncludeLinkedAccounts

If you are using this operation in a monitoring account, specify true to include grouping attributes from source accounts in the returned data.

Value

A list with the following syntax:

list(
  GroupingAttributeDefinitions = list(
    list(
      GroupingName = "string",
      GroupingSourceKeys = list(
        "string"
      ),
      DefaultGroupingValue = "string"
    )
  ),
  UpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  NextToken = "string"
)

Request syntax

svc$list_grouping_attribute_definitions(
  NextToken = "string",
  AwsAccountId = "string",
  IncludeLinkedAccounts = TRUE|FALSE
)