Module Values.CreateApplicationRequestSource

Creates a new application. An application is the top-level organizational unit that supports IAM Identity Center integration.

Sourcetype nonrec t = {
  1. idcInstanceArn : IdCInstanceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM Identity Center instance to associate with the application.

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

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

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

    The identifier of the default AWS KMS key to use for encrypting data in the application.

    *)
  4. tags : TagMap.t option;
    (*

    The tags to associate with the application.

    *)
}
Sourceval make : ?idcInstanceArn:??? -> ?roleArn:??? -> ?defaultKmsKeyId:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of IdCInstanceArn.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