Skip to content

Get App Authorization

appfabric_get_app_authorization R Documentation

Returns information about an app authorization

Description

Returns information about an app authorization.

Usage

appfabric_get_app_authorization(appBundleIdentifier,
  appAuthorizationIdentifier)

Arguments

appBundleIdentifier

[required] The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.

appAuthorizationIdentifier

[required] The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.

Value

A list with the following syntax:

list(
  appAuthorization = list(
    appAuthorizationArn = "string",
    appBundleArn = "string",
    app = "string",
    tenant = list(
      tenantIdentifier = "string",
      tenantDisplayName = "string"
    ),
    authType = "oauth2"|"apiKey",
    status = "PendingConnect"|"Connected"|"ConnectionValidationFailed"|"TokenAutoRotationFailed",
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    updatedAt = as.POSIXct(
      "2015-01-01"
    ),
    persona = "admin"|"endUser",
    authUrl = "string"
  )
)

Request syntax

svc$get_app_authorization(
  appBundleIdentifier = "string",
  appAuthorizationIdentifier = "string"
)