Module Values.ServicePipelineSource

Detailed data of an Proton service instance pipeline resource.

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the service pipeline.

    *)
  2. createdAt : Timestamp.t option;
    (*

    The time when the service pipeline was created.

    *)
  3. deploymentStatus : DeploymentStatus.t option;
    (*

    The deployment status of the service pipeline.

    *)
  4. deploymentStatusMessage : StatusMessage.t option;
    (*

    A service pipeline deployment status message.

    *)
  5. lastAttemptedDeploymentId : DeploymentId.t option;
    (*

    The ID of the last attempted deployment of this service pipeline.

    *)
  6. lastDeploymentAttemptedAt : Timestamp.t option;
    (*

    The time when a deployment of the service pipeline was last attempted.

    *)
  7. lastDeploymentSucceededAt : Timestamp.t option;
    (*

    The time when the service pipeline was last deployed successfully.

    *)
  8. lastSucceededDeploymentId : DeploymentId.t option;
    (*

    The ID of the last successful deployment of this service pipeline.

    *)
  9. spec : SpecContents.t option;
    (*

    The service spec that was used to create the service pipeline.

    *)
  10. templateMajorVersion : TemplateVersionPart.t option;
    (*

    The major version of the service template that was used to create the service pipeline.

    *)
  11. templateMinorVersion : TemplateVersionPart.t option;
    (*

    The minor version of the service template that was used to create the service pipeline.

    *)
  12. templateName : ResourceName.t option;
    (*

    The name of the service template that was used to create the service pipeline.

    *)
}
Sourceval make : ?arn:??? -> ?createdAt:??? -> ?deploymentStatus:??? -> ?deploymentStatusMessage:??? -> ?lastAttemptedDeploymentId:??? -> ?lastDeploymentAttemptedAt:??? -> ?lastDeploymentSucceededAt:??? -> ?lastSucceededDeploymentId:??? -> ?spec:??? -> ?templateMajorVersion:??? -> ?templateMinorVersion:??? -> ?templateName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.t | `Timestamp of Timestamp.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