Skip to content

Get Application

appregistry_get_application R Documentation

Retrieves metadata information about one of your applications

Description

Retrieves metadata information about one of your applications. The application can be specified by its ARN, ID, or name (which is unique within one account in one region at a given point in time). Specify by ARN or ID in automated workflows if you want to make sure that the exact same application is returned or a ResourceNotFoundException is thrown, avoiding the ABA addressing problem.

Usage

appregistry_get_application(application)

Arguments

application

[required] The name, ID, or ARN of the application.

Value

A list with the following syntax:

list(
  id = "string",
  arn = "string",
  name = "string",
  description = "string",
  creationTime = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdateTime = as.POSIXct(
    "2015-01-01"
  ),
  associatedResourceCount = 123,
  tags = list(
    "string"
  ),
  integrations = list(
    resourceGroup = list(
      state = "CREATING"|"CREATE_COMPLETE"|"CREATE_FAILED"|"UPDATING"|"UPDATE_COMPLETE"|"UPDATE_FAILED",
      arn = "string",
      errorMessage = "string"
    ),
    applicationTagResourceGroup = list(
      state = "CREATING"|"CREATE_COMPLETE"|"CREATE_FAILED"|"UPDATING"|"UPDATE_COMPLETE"|"UPDATE_FAILED",
      arn = "string",
      errorMessage = "string"
    )
  ),
  applicationTag = list(
    "string"
  )
)

Request syntax

svc$get_application(
  application = "string"
)