Values.CreateApplicationRequestSourceCreates a new application with given parameters. Requires an existing runtime environment and application definition file.
type nonrec t = {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.
*)definition : Definition.t;The application definition for this application. You can specify either inline JSON or an S3 bucket location.
*)description : EntityDescription.t option;The description of the application.
*)engineType : EngineType.t;The type of the target platform for this application.
*)kmsKeyId : String_.t option;The identifier of a customer managed key.
*)name : EntityName.t;The unique identifier of the application.
*)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.
*)}val make :
?clientToken:??? ->
?description:??? ->
?kmsKeyId:??? ->
?roleArn:??? ->
?tags:??? ->
definition:Definition.t ->
engineType:EngineType.t ->
name:EntityName.t ->
unit ->
tval 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 ]