Module Values.ServiceInstanceSource

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

    The message associated with the service instance deployment status.

    *)
  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. lastClientRequestToken : String_.t option;
    (*

    The last client request token received.

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

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

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

    The time when the service instance was last deployed successfully.

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

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

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

    The name of the service instance.

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

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

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

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

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

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

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

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

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

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

    *)
}
Sourceval make : ?arn:??? -> ?createdAt:??? -> ?deploymentStatus:??? -> ?deploymentStatusMessage:??? -> ?environmentName:??? -> ?lastAttemptedDeploymentId:??? -> ?lastClientRequestToken:??? -> ?lastDeploymentAttemptedAt:??? -> ?lastDeploymentSucceededAt:??? -> ?lastSucceededDeploymentId:??? -> ?name:??? -> ?serviceName:??? -> ?spec:??? -> ?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