Module Values.ApplicationSummarySource

Contains summary information about an application.

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

    The unique identifier of the application.

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

    The name of the application.

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

    The domain associated with the application.

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

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

    *)
}
Sourceval make : ?applicationId:??? -> ?applicationName:??? -> ?domain:??? -> ?defaultKmsKeyId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ApplicationId.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