Skip to content

Update Attribute Group

appregistry_update_attribute_group R Documentation

Updates an existing attribute group with new details

Description

Updates an existing attribute group with new details.

Usage

appregistry_update_attribute_group(attributeGroup, name, description,
  attributes)

Arguments

attributeGroup

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

name

Deprecated: The new name of the attribute group. The name must be unique in the region in which you are updating the attribute group. Please do not use this field as we have stopped supporting name updates.

description

The description of the attribute group that the user provides.

attributes

A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.

Value

A list with the following syntax:

list(
  attributeGroup = list(
    id = "string",
    arn = "string",
    name = "string",
    description = "string",
    creationTime = as.POSIXct(
      "2015-01-01"
    ),
    lastUpdateTime = as.POSIXct(
      "2015-01-01"
    ),
    tags = list(
      "string"
    )
  )
)

Request syntax

svc$update_attribute_group(
  attributeGroup = "string",
  name = "string",
  description = "string",
  attributes = "string"
)