Skip to content

Create Application

appregistry_create_application R Documentation

Description

Creates a new application that is the top-level node in a hierarchy of related cloud resource abstractions.

Usage

appregistry_create_application(name, description, tags, clientToken)

Arguments

name

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

description

The description of the application.

tags

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

clientToken

[required] 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.

Value

A list with the following syntax:

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

Request syntax

svc$create_application(
  name = "string",
  description = "string",
  tags = list(
    "string"
  ),
  clientToken = "string"
)