You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::AppRegistry::Types::CreateAttributeGroupRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateAttributeGroupRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "Name", # required
  description: "Description",
  attributes: "Attributes", # required
  tags: {
    "TagKey" => "TagValue",
  },
  client_token: "ClientToken", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#attributesString

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.

Returns:

  • (String)

    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.

#client_tokenString

A unique identifier that you provide to ensure idempotency. If you retry a request that completed successfully using the same client token and the same parameters, the retry succeeds without performing any further actions. If you retry a successful request using the same client token, but one or more of the parameters are different, the retry fails.

Returns:

  • (String)

    A unique identifier that you provide to ensure idempotency.

#descriptionString

The description of the attribute group that the user provides.

Returns:

  • (String)

    The description of the attribute group that the user provides.

#nameString

The name of the attribute group.

Returns:

  • (String)

    The name of the attribute group.

#tagsHash<String,String>

Key-value pairs you can use to associate with the attribute group.

Returns:

  • (Hash<String,String>)

    Key-value pairs you can use to associate with the attribute group.