Module Values.CreateWorkspaceRequestSource

Represents the input of a CreateWorkspace operation.

Sourcetype nonrec t = {
  1. alias : WorkspaceAlias.t option;
    (*

    An alias that you assign to this workspace to help you identify it. It does not need to be unique. Blank spaces at the beginning or end of the alias that you specify will be trimmed from the value used.

    *)
  2. clientToken : IdempotencyToken.t option;
    (*

    A unique identifier that you can provide to ensure the idempotency of the request. Case-sensitive.

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

    The list of tag keys and values to associate with the workspace.

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

    (optional) The ARN for a customer managed KMS key to use for encrypting data within your workspace. For more information about using your own key in your workspace, see Encryption at rest in the Amazon Managed Service for Prometheus User Guide.

    *)
}
Sourceval make : ?alias:??? -> ?clientToken:??? -> ?tags:??? -> ?kmsKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of WorkspaceAlias.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