Values.AppAuthorizationSourceContains information about an app authorization.
type nonrec t = {appAuthorizationArn : Arn.t option;The Amazon Resource Name (ARN) of the app authorization.
*)appBundleArn : Arn.t option;The Amazon Resource Name (ARN) of the app bundle for the app authorization.
*)app : String255.t option;The name of the application.
*)tenant : Tenant.t option;Contains information about an application tenant, such as the application display name and identifier.
*)authType : AuthType.t option;The authorization type.
*)status : AppAuthorizationStatus.t option;The state of the app authorization. The following states are possible: PendingConnect: The initial state of the app authorization. The app authorization is created but not yet connected. Connected: The app authorization is connected to the application, and is ready to be used. ConnectionValidationFailed: The app authorization received a validation exception when trying to connect to the application. If the app authorization is in this state, you should verify the configured credentials and try to connect the app authorization again. TokenAutoRotationFailed: AppFabric failed to refresh the access token. If the app authorization is in this state, you should try to reconnect the app authorization.
*)createdAt : DateTime.t option;The timestamp of when the app authorization was created.
*)updatedAt : DateTime.t option;The timestamp of when the app authorization was last updated.
*)persona : Persona.t option;The user persona of the app authorization. This field should always be admin.
*)authUrl : String_.t option;The application URL for the OAuth flow.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of Arn.t
| `Structure of (string * [> `String of TenantIdentifier.t ]) list
| `Timestamp of DateTime.t ])
list ]