Class: Aws::ObservabilityAdmin::Types::StartTelemetryEvaluationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ObservabilityAdmin::Types::StartTelemetryEvaluationInput
- Defined in:
- gems/aws-sdk-observabilityadmin/lib/aws-sdk-observabilityadmin/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#all_regions ⇒ Boolean
If set to
true, telemetry evaluation starts in all Amazon Web Services Regions where Amazon CloudWatch Observability Admin is available in the current partition. -
#regions ⇒ Array<String>
An optional list of Amazon Web Services Regions to include in multi-region telemetry evaluation.
Instance Attribute Details
#all_regions ⇒ Boolean
If set to true, telemetry evaluation starts in all Amazon Web
Services Regions where Amazon CloudWatch Observability Admin is
available in the current partition. The current region becomes the
home region for managing multi-region evaluation. When new regions
become available, evaluation automatically expands to include them.
Mutually exclusive with Regions.
2062 2063 2064 2065 2066 2067 |
# File 'gems/aws-sdk-observabilityadmin/lib/aws-sdk-observabilityadmin/types.rb', line 2062 class StartTelemetryEvaluationInput < Struct.new( :regions, :all_regions) SENSITIVE = [] include Aws::Structure end |
#regions ⇒ Array<String>
An optional list of Amazon Web Services Regions to include in
multi-region telemetry evaluation. The current region is always
implicitly included and must not be specified in this list. When
provided, telemetry evaluation starts in the current region and
propagates to all specified regions. Mutually exclusive with
AllRegions. If neither Regions nor AllRegions is provided, the
operation applies only to the current region.
2062 2063 2064 2065 2066 2067 |
# File 'gems/aws-sdk-observabilityadmin/lib/aws-sdk-observabilityadmin/types.rb', line 2062 class StartTelemetryEvaluationInput < Struct.new( :regions, :all_regions) SENSITIVE = [] include Aws::Structure end |