Module Values.TemplateDetailsSource

Details of the template.

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

    The application Amazon Resource Name (ARN).

    *)
  2. creationTime : string;
    (*

    The date and time this resource was created.

    *)
  3. expirationTime : string;
    (*

    The date and time this template expires. Templates expire 1 hour after creation.

    *)
  4. semanticVersion : string;
    (*

    The semantic version of the application: https://semver.org/

    *)
  5. status : Status.t;
    (*

    Status of the template creation workflow.Possible values: PREPARING | ACTIVE | EXPIRED

    *)
  6. templateId : string;
    (*

    The UUID returned by CreateCloudFormationTemplate.Pattern: [0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}

    *)
  7. templateUrl : string;
    (*

    A link to the template that can be used to deploy the application using AWS CloudFormation.

    *)
}
Sourceval context_ : string
Sourceval make : applicationId:string -> creationTime:string -> expirationTime:string -> semanticVersion:string -> status:Status.t -> templateId:string -> templateUrl:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string ]) 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