Module Values.UpdateApplicationRequestSource

Updates the configuration of an existing application, including the IAM role and default KMS key.

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

    The unique identifier of the application to update.

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

    The updated Amazon Resource Name (ARN) of the IAM role for the application.

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

    The updated identifier of the default AWS KMS key for the application.

    *)
}
Sourceval context_ : string
Sourceval make : ?roleArn:??? -> ?defaultKmsKeyId:??? -> applicationId:ApplicationId.t -> 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