Skip to content

Connect App Authorization

appfabric_connect_app_authorization R Documentation

Establishes a connection between Amazon Web Services AppFabric and an application, which allows AppFabric to call the APIs of the application

Description

Establishes a connection between Amazon Web Services AppFabric and an application, which allows AppFabric to call the APIs of the application.

Usage

appfabric_connect_app_authorization(appBundleIdentifier,
  appAuthorizationIdentifier, authRequest)

Arguments

appBundleIdentifier

[required] The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle that contains the app authorization 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.

authRequest

Contains OAuth2 authorization information.

This is required if the app authorization for the request is configured with an OAuth2 (oauth2) authorization type.

Value

A list with the following syntax:

list(
  appAuthorizationSummary = list(
    appAuthorizationArn = "string",
    appBundleArn = "string",
    app = "string",
    tenant = list(
      tenantIdentifier = "string",
      tenantDisplayName = "string"
    ),
    status = "PendingConnect"|"Connected"|"ConnectionValidationFailed"|"TokenAutoRotationFailed",
    updatedAt = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$connect_app_authorization(
  appBundleIdentifier = "string",
  appAuthorizationIdentifier = "string",
  authRequest = list(
    redirectUri = "string",
    code = "string"
  )
)