Module Values.DeploymentSource

The detailed information about a 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 this deployment.

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

    The date and time the deployment was created.

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

    The status of the deployment.

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

    The deployment status message.

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

    The name of the environment associated with this deployment.

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

    The ID of the deployment.

    *)
  9. initialState : DeploymentState.t option;
    (*

    The initial state of the target resource at the time of the deployment.

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

    The ID of the last attempted deployment.

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

    The date and time the deployment was last modified.

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

    The ID of the last successful deployment.

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

    The name of the deployment's service instance.

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

    The name of the service in this deployment.

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

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

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

    The date and time the depoyment target was created.

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

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

    *)
  18. targetState : DeploymentState.t option;
    (*

    The target state of the target resource at the time of the deployment.

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