Skip to content

Get Attribute Group

appregistry_get_attribute_group R Documentation

Retrieves an attribute group by its ARN, ID, or name

Description

Retrieves an attribute group by its ARN, ID, or name. The attribute group can be specified by its ARN, ID, or name.

Usage

appregistry_get_attribute_group(attributeGroup)

Arguments

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(
  id = "string",
  arn = "string",
  name = "string",
  description = "string",
  attributes = "string",
  creationTime = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdateTime = as.POSIXct(
    "2015-01-01"
  ),
  tags = list(
    "string"
  ),
  createdBy = "string"
)

Request syntax

svc$get_attribute_group(
  attributeGroup = "string"
)