Module Values.GetApplicationResponseSource

Retrieves information about an application.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t option;
    (*

    The unique identifier of the application.

    *)
  2. domain : ApplicationDomain.t option;
    (*

    The domain associated with the application.

    *)
  3. applicationName : String_.t option;
    (*

    The name of the application.

    *)
  4. idcConfiguration : IdCConfiguration.t option;
    (*

    The IAM Identity Center configuration for the application.

    *)
  5. roleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role associated with the application.

    *)
  6. defaultKmsKeyId : DefaultKmsKeyId.t option;
    (*

    The identifier of the default AWS KMS key used to encrypt data for the application.

    *)
}
Sourcetype nonrec error = [
  1. | `Unknown_operation_error of string * string option
]
Sourceval make : ?applicationId:??? -> ?domain:??? -> ?applicationName:??? -> ?idcConfiguration:??? -> ?roleArn:??? -> ?defaultKmsKeyId:??? -> unit -> t
Sourceval error_of_json : 'a -> Yojson.Safe.t -> [> `Unknown_operation_error of 'a * string option ]
Sourceval error_of_xml : 'a -> Awso.Xml.t -> [> `Unknown_operation_error of 'a * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ApplicationId.t | `Structure of (string * [> `String of IdCApplicationArn.t ]) list ]) 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