Module Values.CreateApplicationRequestSource

Creates a new application with given parameters. Requires an existing runtime environment and application definition file.

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t option;
    (*

    A client token is a unique, case-sensitive string of up to 128 ASCII characters with ASCII values of 33-126 inclusive. It's generated by the client to ensure idempotent operations, allowing for safe retries without unintended side effects.

    *)
  2. definition : Definition.t;
    (*

    The application definition for this application. You can specify either inline JSON or an S3 bucket location.

    *)
  3. description : EntityDescription.t option;
    (*

    The description of the application.

    *)
  4. engineType : EngineType.t;
    (*

    The type of the target platform for this application.

    *)
  5. kmsKeyId : String_.t option;
    (*

    The identifier of a customer managed key.

    *)
  6. name : EntityName.t;
    (*

    The unique identifier of the application.

    *)
  7. roleArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) that identifies a role that the application uses to access Amazon Web Services resources that are not part of the application or are in a different Amazon Web Services account.

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

    A list of tags to apply to the application.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?description:??? -> ?kmsKeyId:??? -> ?roleArn:??? -> ?tags:??? -> definition:Definition.t -> engineType:EngineType.t -> name:EntityName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ClientToken.t | `Structure of (string * [> `String of StringFree65000.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