Module Values.ApplicationSource

A structure that describes an application that uses IAM Identity Center for access management.

Sourcetype nonrec t = {
  1. applicationArn : ApplicationArn.t option;
    (*

    The ARN of the application.

    *)
  2. applicationProviderArn : ApplicationProviderArn.t option;
    (*

    The ARN of the application provider for this application.

    *)
  3. name : ApplicationNameType.t option;
    (*

    The name of the application.

    *)
  4. applicationAccount : AccountId.t option;
    (*

    The Amazon Web Services account ID number of the application.

    *)
  5. instanceArn : InstanceArn.t option;
    (*

    The ARN of the instance of IAM Identity Center that is configured with this application.

    *)
  6. identityStoreArn : IdentityStoreArn.t option;
    (*

    The ARN of the identity store that is connected to the instance of IAM Identity Center.

    *)
  7. status : ApplicationStatus.t option;
    (*

    The current status of the application in this instance of IAM Identity Center.

    *)
  8. portalOptions : PortalOptions.t option;
    (*

    A structure that describes the options for the access portal associated with this application.

    *)
  9. description : Description.t option;
    (*

    The description of the application.

    *)
  10. createdDate : Date.t option;
    (*

    The date and time when the application was originally created.

    *)
  11. createdFrom : RegionName.t option;
    (*

    The Amazon Web Services Region where the application was created in IAM Identity Center.

    *)
}
Sourceval make : ?applicationArn:??? -> ?applicationProviderArn:??? -> ?name:??? -> ?applicationAccount:??? -> ?instanceArn:??? -> ?identityStoreArn:??? -> ?status:??? -> ?portalOptions:??? -> ?description:??? -> ?createdDate:??? -> ?createdFrom:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ApplicationArn.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `String of ApplicationUrl.t ]) list ]) list | `Timestamp of Date.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t