Skip to content

Associate Attribute Group

appregistry_associate_attribute_group R Documentation

Associates an attribute group with an application to augment the application's metadata with the group's attributes

Description

Associates an attribute group with an application to augment the application's metadata with the group's attributes. This feature enables applications to be described with user-defined details that are machine-readable, such as third-party integrations.

Usage

appregistry_associate_attribute_group(application, attributeGroup)

Arguments

application

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

attributeGroup

[required] The name, ID, or ARN of the attribute group that holds the attributes to describe the application.

Value

A list with the following syntax:

list(
  applicationArn = "string",
  attributeGroupArn = "string"
)

Request syntax

svc$associate_attribute_group(
  application = "string",
  attributeGroup = "string"
)