Module Values.ApplicationDescriptionSource

Describes the properties of an application.

Sourcetype nonrec t = {
  1. applicationArn : ApplicationArn.t option;
    (*

    The Amazon Resource Name (ARN) of the application.

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

    The name of the application.

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

    User-defined description of the application.

    *)
  4. dateCreated : CreationDate.t option;
    (*

    The date when the application was created.

    *)
  5. dateUpdated : UpdateDate.t option;
    (*

    The date when the application was last modified.

    *)
  6. versions : VersionLabelsList.t option;
    (*

    The names of the versions for this application.

    *)
  7. configurationTemplates : ConfigurationTemplateNamesList.t option;
    (*

    The names of the configuration templates associated with this application.

    *)
  8. resourceLifecycleConfig : ApplicationResourceLifecycleConfig.t option;
    (*

    The lifecycle settings for the application.

    *)
}
Sourceval make : ?applicationArn:??? -> ?applicationName:??? -> ?description:??? -> ?dateCreated:??? -> ?dateUpdated:??? -> ?versions:??? -> ?configurationTemplates:??? -> ?resourceLifecycleConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of VersionLabel.t ] list | `String of ApplicationArn.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Structure of (string * [> `Boolean of BoxedBoolean.t | `Integer of BoxedInt.t ]) list ]) list ]) list | `Timestamp of CreationDate.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