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

Class: Aws::AppRegistry::Types::CreateApplicationRequest

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

Overview

Note:

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#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 application.

Returns:

  • (String)

    The description of the application.

#nameString

The name of the application. The name must be unique in the region in which you are creating the application.

Returns:

  • (String)

    The name of the application.

#tagsHash<String,String>

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

Returns:

  • (Hash<String,String>)

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