Class: Aws::PrometheusService::Types::UpdateWorkspaceConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::PrometheusService::Types::UpdateWorkspaceConfigurationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-prometheusservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
You can include a token in your operation to make it an idempotent opeartion.
-
#limits_per_label_set ⇒ Array<Types::LimitsPerLabelSet>
This is an array of structures, where each structure defines a label set for the workspace, and defines the ingestion limit for active time series for each of those label sets.
-
#retention_period_in_days ⇒ Integer
Specifies how many days that metrics will be retained in the workspace.
-
#workspace_id ⇒ String
The ID of the workspace that you want to update.
Instance Attribute Details
#client_token ⇒ String
You can include a token in your operation to make it an idempotent opeartion.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
2023 2024 2025 2026 2027 2028 2029 2030 |
# File 'lib/aws-sdk-prometheusservice/types.rb', line 2023 class UpdateWorkspaceConfigurationRequest < Struct.new( :client_token, :limits_per_label_set, :retention_period_in_days, :workspace_id) SENSITIVE = [] include Aws::Structure end |
#limits_per_label_set ⇒ Array<Types::LimitsPerLabelSet>
This is an array of structures, where each structure defines a label set for the workspace, and defines the ingestion limit for active time series for each of those label sets. Each label name in a label set must be unique.
2023 2024 2025 2026 2027 2028 2029 2030 |
# File 'lib/aws-sdk-prometheusservice/types.rb', line 2023 class UpdateWorkspaceConfigurationRequest < Struct.new( :client_token, :limits_per_label_set, :retention_period_in_days, :workspace_id) SENSITIVE = [] include Aws::Structure end |
#retention_period_in_days ⇒ Integer
Specifies how many days that metrics will be retained in the workspace.
2023 2024 2025 2026 2027 2028 2029 2030 |
# File 'lib/aws-sdk-prometheusservice/types.rb', line 2023 class UpdateWorkspaceConfigurationRequest < Struct.new( :client_token, :limits_per_label_set, :retention_period_in_days, :workspace_id) SENSITIVE = [] include Aws::Structure end |
#workspace_id ⇒ String
The ID of the workspace that you want to update. To find the IDs of your workspaces, use the [ListWorkspaces] operation.
[1]: docs.aws.amazon.com/prometheus/latest/APIReference/API_ListWorkspaces.htm
2023 2024 2025 2026 2027 2028 2029 2030 |
# File 'lib/aws-sdk-prometheusservice/types.rb', line 2023 class UpdateWorkspaceConfigurationRequest < Struct.new( :client_token, :limits_per_label_set, :retention_period_in_days, :workspace_id) SENSITIVE = [] include Aws::Structure end |