Module Values.DeploymentSummarySource

Summary data of the deployment.

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

    The Amazon Resource Name (ARN) of the deployment.

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

    The date and time the deployment was completed.

    *)
  3. componentName : ResourceName.t option;
    (*

    The name of the component associated with the deployment.

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

    The date and time the deployment was created.

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

    The current status of the deployment.

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

    The name of the environment associated with the deployment.

    *)
  7. id : DeploymentId.t option;
    (*

    The ID of the deployment.

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

    The ID of the last attempted deployment.

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

    The date and time the deployment was last modified.

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

    The ID of the last successful deployment.

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

    The name of the service instance associated with the deployment.

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

    The name of the service associated with the deployment.

    *)
  13. targetArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the target of the deployment.

    *)
  14. targetResourceCreatedAt : Timestamp.t option;
    (*

    The date and time the target resource was created.

    *)
  15. targetResourceType : DeploymentTargetResourceType.t option;
    (*

    The resource type of the deployment target. It can be an environment, service, service instance, or component.

    *)
}
Sourceval make : ?arn:??? -> ?completedAt:??? -> ?componentName:??? -> ?createdAt:??? -> ?deploymentStatus:??? -> ?environmentName:??? -> ?id:??? -> ?lastAttemptedDeploymentId:??? -> ?lastModifiedAt:??? -> ?lastSucceededDeploymentId:??? -> ?serviceInstanceName:??? -> ?serviceName:??? -> ?targetArn:??? -> ?targetResourceCreatedAt:??? -> ?targetResourceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DeploymentArn.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