Module Values.CreateWorkspaceResponseSource

Represents the output of a CreateWorkspace operation.

Sourcetype nonrec t = {
  1. workspaceId : WorkspaceId.t option;
    (*

    The unique ID for the new workspace.

    *)
  2. arn : WorkspaceArn.t option;
    (*

    The ARN for the new workspace.

    *)
  3. status : WorkspaceStatus.t option;
    (*

    The current status of the new workspace. Immediately after you create the workspace, the status is usually CREATING.

    *)
  4. tags : TagMap.t option;
    (*

    The list of tag keys and values that are associated with the workspace.

    *)
  5. kmsKeyArn : KmsKeyArn.t option;
    (*

    (optional) If the workspace was created with a customer managed KMS key, the ARN for the key used.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?workspaceId:??? -> ?arn:??? -> ?status:??? -> ?tags:??? -> ?kmsKeyArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of WorkspaceId.t | `Structure of (string * [> `Enum of string ]) list ]) 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