Module Values.CreateCloudFormationTemplateResponseSource

Creates an AWS CloudFormation template.

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

    The application Amazon Resource Name (ARN).

    *)
  2. creationTime : string option;
    (*

    The date and time this resource was created.

    *)
  3. expirationTime : string option;
    (*

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

    *)
  4. semanticVersion : string option;
    (*

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

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

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

    *)
  6. templateId : string option;
    (*

    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 option;
    (*

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

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ForbiddenException of ForbiddenException.t
  3. | `InternalServerErrorException of InternalServerErrorException.t
  4. | `NotFoundException of NotFoundException.t
  5. | `TooManyRequestsException of TooManyRequestsException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?applicationId:??? -> ?creationTime:??? -> ?expirationTime:??? -> ?semanticVersion:??? -> ?status:??? -> ?templateId:??? -> ?templateUrl:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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