Module Values.ServiceInstanceSummarySource

Summary data of an Proton service instance resource.

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

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

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

    The time when the service instance was created.

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

    The service instance deployment status.

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

    A service instance deployment status message.

    *)
  5. environmentName : ResourceName.t option;
    (*

    The name of the environment that the service instance was deployed into.

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

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

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

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

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

    The time when the service was last deployed successfully.

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

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

    *)
  10. name : ResourceName.t option;
    (*

    The name of the service instance.

    *)
  11. serviceName : ResourceName.t option;
    (*

    The name of the service that the service instance belongs to.

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

    The service instance template major version.

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

    The service instance template minor version.

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

    The name of the service template.

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