Class: Aws::PrometheusService::Types::CreateWorkspaceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::PrometheusService::Types::CreateWorkspaceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-prometheusservice/types.rb
Overview
Represents the input of a ‘CreateWorkspace` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alias ⇒ String
An alias that you assign to this workspace to help you identify it.
-
#client_token ⇒ String
A unique identifier that you can provide to ensure the idempotency of the request.
-
#kms_key_arn ⇒ String
(optional) The ARN for a customer managed KMS key to use for encrypting data within your workspace.
-
#tags ⇒ Hash<String,String>
The list of tag keys and values to associate with the workspace.
Instance Attribute Details
#alias ⇒ String
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.
412 413 414 415 416 417 418 419 |
# File 'lib/aws-sdk-prometheusservice/types.rb', line 412 class CreateWorkspaceRequest < Struct.new( :alias, :client_token, :kms_key_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#client_token ⇒ String
A unique identifier that you can provide to ensure the idempotency of the request. Case-sensitive.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
412 413 414 415 416 417 418 419 |
# File 'lib/aws-sdk-prometheusservice/types.rb', line 412 class CreateWorkspaceRequest < Struct.new( :alias, :client_token, :kms_key_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#kms_key_arn ⇒ String
(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*.
[1]: docs.aws.amazon.com/prometheus/latest/userguide/encryption-at-rest-Amazon-Service-Prometheus.html
412 413 414 415 416 417 418 419 |
# File 'lib/aws-sdk-prometheusservice/types.rb', line 412 class CreateWorkspaceRequest < Struct.new( :alias, :client_token, :kms_key_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The list of tag keys and values to associate with the workspace.
412 413 414 415 416 417 418 419 |
# File 'lib/aws-sdk-prometheusservice/types.rb', line 412 class CreateWorkspaceRequest < Struct.new( :alias, :client_token, :kms_key_arn, :tags) SENSITIVE = [] include Aws::Structure end |