Module Values.DeploymentDataSource

The data associated with a deployment.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    The name of the deployment.

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

    The ID of the deployment.

    *)
  3. workloadName : WorkloadName.t option;
    (*

    The name of the workload.

    *)
  4. patternName : DeploymentPatternName.t option;
    (*

    The pattern name of the deployment.

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

    The status of the deployment.

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

    The time the deployment was created.

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

    The time the deployment was last modified.

    *)
  8. specifications : DeploymentSpecifications.t option;
    (*

    The settings specified for the deployment. These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see SAP deployment specifications. To retrieve the specifications required to create a deployment for other workloads, use the GetWorkloadDeploymentPattern operation.

    *)
  9. resourceGroup : String_.t option;
    (*

    The resource group of the deployment.

    *)
  10. deletedAt : Timestamp.t option;
    (*

    The time the deployment was deleted.

    *)
  11. tags : Tags.t option;
    (*

    Information about the tags attached to a deployment.

    *)
  12. deploymentArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the deployment.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?workloadName:??? -> ?patternName:??? -> ?status:??? -> ?createdAt:??? -> ?modifiedAt:??? -> ?specifications:??? -> ?resourceGroup:??? -> ?deletedAt:??? -> ?tags:??? -> ?deploymentArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of KeyString.t ] * [> `String of ValueString.t ]) list | `String of String_.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