published on Friday, May 29, 2026 by Pulumi
published on Friday, May 29, 2026 by Pulumi
Manages an AWS CloudWatch Observability Admin Telemetry Evaluation For Organization.
Telemetry evaluation for organization begins onboarding the organization and all member accounts to the telemetry config feature, enabling CloudWatch to evaluate and discover the state of telemetry configuration for AWS resources across the organization.
For more information, see the AWS CloudWatch Observability Admin documentation.
NOTE: This resource can only be used from the management account or a delegated admin account of an AWS Organization. Only one telemetry evaluation for organization can exist per organization. Creating this resource enables the feature; destroying it disables the feature.
Example Usage
Basic Usage (Current Region Only)
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.observabilityadmin.TelemetryEvaluationForOrganization("example", {});
import pulumi
import pulumi_aws as aws
example = aws.observabilityadmin.TelemetryEvaluationForOrganization("example")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/observabilityadmin"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := observabilityadmin.NewTelemetryEvaluationForOrganization(ctx, "example", nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Observabilityadmin.TelemetryEvaluationForOrganization("example");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.observabilityadmin.TelemetryEvaluationForOrganization;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new TelemetryEvaluationForOrganization("example");
}
}
resources:
example:
type: aws:observabilityadmin:TelemetryEvaluationForOrganization
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_observabilityadmin_telemetryevaluationfororganization" "example" {
}
All Regions
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.observabilityadmin.TelemetryEvaluationForOrganization("example", {allRegions: true});
import pulumi
import pulumi_aws as aws
example = aws.observabilityadmin.TelemetryEvaluationForOrganization("example", all_regions=True)
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/observabilityadmin"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := observabilityadmin.NewTelemetryEvaluationForOrganization(ctx, "example", &observabilityadmin.TelemetryEvaluationForOrganizationArgs{
AllRegions: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Observabilityadmin.TelemetryEvaluationForOrganization("example", new()
{
AllRegions = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.observabilityadmin.TelemetryEvaluationForOrganization;
import com.pulumi.aws.observabilityadmin.TelemetryEvaluationForOrganizationArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new TelemetryEvaluationForOrganization("example", TelemetryEvaluationForOrganizationArgs.builder()
.allRegions(true)
.build());
}
}
resources:
example:
type: aws:observabilityadmin:TelemetryEvaluationForOrganization
properties:
allRegions: true
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_observabilityadmin_telemetryevaluationfororganization" "example" {
all_regions = true
}
Specific Regions
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.observabilityadmin.TelemetryEvaluationForOrganization("example", {regions: [
"us-east-1",
"eu-west-1",
]});
import pulumi
import pulumi_aws as aws
example = aws.observabilityadmin.TelemetryEvaluationForOrganization("example", regions=[
"us-east-1",
"eu-west-1",
])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/observabilityadmin"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := observabilityadmin.NewTelemetryEvaluationForOrganization(ctx, "example", &observabilityadmin.TelemetryEvaluationForOrganizationArgs{
Regions: pulumi.StringArray{
pulumi.String("us-east-1"),
pulumi.String("eu-west-1"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Observabilityadmin.TelemetryEvaluationForOrganization("example", new()
{
Regions = new[]
{
"us-east-1",
"eu-west-1",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.observabilityadmin.TelemetryEvaluationForOrganization;
import com.pulumi.aws.observabilityadmin.TelemetryEvaluationForOrganizationArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new TelemetryEvaluationForOrganization("example", TelemetryEvaluationForOrganizationArgs.builder()
.regions(
"us-east-1",
"eu-west-1")
.build());
}
}
resources:
example:
type: aws:observabilityadmin:TelemetryEvaluationForOrganization
properties:
regions:
- us-east-1
- eu-west-1
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_observabilityadmin_telemetryevaluationfororganization" "example" {
regions = ["us-east-1", "eu-west-1"]
}
Create TelemetryEvaluationForOrganization Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TelemetryEvaluationForOrganization(name: string, args?: TelemetryEvaluationForOrganizationArgs, opts?: CustomResourceOptions);@overload
def TelemetryEvaluationForOrganization(resource_name: str,
args: Optional[TelemetryEvaluationForOrganizationArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def TelemetryEvaluationForOrganization(resource_name: str,
opts: Optional[ResourceOptions] = None,
all_regions: Optional[bool] = None,
region: Optional[str] = None,
regions: Optional[Sequence[str]] = None,
timeouts: Optional[TelemetryEvaluationForOrganizationTimeoutsArgs] = None)func NewTelemetryEvaluationForOrganization(ctx *Context, name string, args *TelemetryEvaluationForOrganizationArgs, opts ...ResourceOption) (*TelemetryEvaluationForOrganization, error)public TelemetryEvaluationForOrganization(string name, TelemetryEvaluationForOrganizationArgs? args = null, CustomResourceOptions? opts = null)
public TelemetryEvaluationForOrganization(String name, TelemetryEvaluationForOrganizationArgs args)
public TelemetryEvaluationForOrganization(String name, TelemetryEvaluationForOrganizationArgs args, CustomResourceOptions options)
type: aws:observabilityadmin:TelemetryEvaluationForOrganization
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "aws_observabilityadmin_telemetryevaluationfororganization" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args TelemetryEvaluationForOrganizationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args TelemetryEvaluationForOrganizationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args TelemetryEvaluationForOrganizationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TelemetryEvaluationForOrganizationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TelemetryEvaluationForOrganizationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var telemetryEvaluationForOrganizationResource = new Aws.Observabilityadmin.TelemetryEvaluationForOrganization("telemetryEvaluationForOrganizationResource", new()
{
AllRegions = false,
Region = "string",
Regions = new[]
{
"string",
},
Timeouts = new Aws.Observabilityadmin.Inputs.TelemetryEvaluationForOrganizationTimeoutsArgs
{
Create = "string",
Delete = "string",
},
});
example, err := observabilityadmin.NewTelemetryEvaluationForOrganization(ctx, "telemetryEvaluationForOrganizationResource", &observabilityadmin.TelemetryEvaluationForOrganizationArgs{
AllRegions: pulumi.Bool(false),
Region: pulumi.String("string"),
Regions: pulumi.StringArray{
pulumi.String("string"),
},
Timeouts: &observabilityadmin.TelemetryEvaluationForOrganizationTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
})
resource "aws_observabilityadmin_telemetryevaluationfororganization" "telemetryEvaluationForOrganizationResource" {
all_regions = false
region = "string"
regions = ["string"]
timeouts = {
create = "string"
delete = "string"
}
}
var telemetryEvaluationForOrganizationResource = new TelemetryEvaluationForOrganization("telemetryEvaluationForOrganizationResource", TelemetryEvaluationForOrganizationArgs.builder()
.allRegions(false)
.region("string")
.regions("string")
.timeouts(TelemetryEvaluationForOrganizationTimeoutsArgs.builder()
.create("string")
.delete("string")
.build())
.build());
telemetry_evaluation_for_organization_resource = aws.observabilityadmin.TelemetryEvaluationForOrganization("telemetryEvaluationForOrganizationResource",
all_regions=False,
region="string",
regions=["string"],
timeouts={
"create": "string",
"delete": "string",
})
const telemetryEvaluationForOrganizationResource = new aws.observabilityadmin.TelemetryEvaluationForOrganization("telemetryEvaluationForOrganizationResource", {
allRegions: false,
region: "string",
regions: ["string"],
timeouts: {
create: "string",
"delete": "string",
},
});
type: aws:observabilityadmin:TelemetryEvaluationForOrganization
properties:
allRegions: false
region: string
regions:
- string
timeouts:
create: string
delete: string
TelemetryEvaluationForOrganization Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The TelemetryEvaluationForOrganization resource accepts the following input properties:
- All
Regions bool - Whether to start telemetry evaluation in all AWS Regions where CloudWatch Observability Admin is available. The current region becomes the home region. Mutually exclusive with
regions. - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Regions List<string>
- List of AWS Regions to include in multi-region telemetry evaluation. The current region is always implicitly included. Mutually exclusive with
allRegions. - Timeouts
Telemetry
Evaluation For Organization Timeouts
- All
Regions bool - Whether to start telemetry evaluation in all AWS Regions where CloudWatch Observability Admin is available. The current region becomes the home region. Mutually exclusive with
regions. - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Regions []string
- List of AWS Regions to include in multi-region telemetry evaluation. The current region is always implicitly included. Mutually exclusive with
allRegions. - Timeouts
Telemetry
Evaluation For Organization Timeouts Args
- all_
regions bool - Whether to start telemetry evaluation in all AWS Regions where CloudWatch Observability Admin is available. The current region becomes the home region. Mutually exclusive with
regions. - region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- regions list(string)
- List of AWS Regions to include in multi-region telemetry evaluation. The current region is always implicitly included. Mutually exclusive with
allRegions. - timeouts object
- all
Regions Boolean - Whether to start telemetry evaluation in all AWS Regions where CloudWatch Observability Admin is available. The current region becomes the home region. Mutually exclusive with
regions. - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- regions List<String>
- List of AWS Regions to include in multi-region telemetry evaluation. The current region is always implicitly included. Mutually exclusive with
allRegions. - timeouts
Telemetry
Evaluation For Organization Timeouts
- all
Regions boolean - Whether to start telemetry evaluation in all AWS Regions where CloudWatch Observability Admin is available. The current region becomes the home region. Mutually exclusive with
regions. - region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- regions string[]
- List of AWS Regions to include in multi-region telemetry evaluation. The current region is always implicitly included. Mutually exclusive with
allRegions. - timeouts
Telemetry
Evaluation For Organization Timeouts
- all_
regions bool - Whether to start telemetry evaluation in all AWS Regions where CloudWatch Observability Admin is available. The current region becomes the home region. Mutually exclusive with
regions. - region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- regions Sequence[str]
- List of AWS Regions to include in multi-region telemetry evaluation. The current region is always implicitly included. Mutually exclusive with
allRegions. - timeouts
Telemetry
Evaluation For Organization Timeouts Args
- all
Regions Boolean - Whether to start telemetry evaluation in all AWS Regions where CloudWatch Observability Admin is available. The current region becomes the home region. Mutually exclusive with
regions. - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- regions List<String>
- List of AWS Regions to include in multi-region telemetry evaluation. The current region is always implicitly included. Mutually exclusive with
allRegions. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the TelemetryEvaluationForOrganization resource produces the following output properties:
- Failure
Reason string - Reason for the failure status. Only populated if
statusisFAILED_STARTorFAILED_STOP. - Home
Region string - AWS Region designated as the home region for multi-region telemetry evaluation. Only present when multi-region evaluation is active.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Onboarding status of the telemetry config feature for the organization. Valid values:
NOT_STARTED,STARTING,FAILED_START,RUNNING,STOPPING,FAILED_STOP,STOPPED.
- Failure
Reason string - Reason for the failure status. Only populated if
statusisFAILED_STARTorFAILED_STOP. - Home
Region string - AWS Region designated as the home region for multi-region telemetry evaluation. Only present when multi-region evaluation is active.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Onboarding status of the telemetry config feature for the organization. Valid values:
NOT_STARTED,STARTING,FAILED_START,RUNNING,STOPPING,FAILED_STOP,STOPPED.
- failure_
reason string - Reason for the failure status. Only populated if
statusisFAILED_STARTorFAILED_STOP. - home_
region string - AWS Region designated as the home region for multi-region telemetry evaluation. Only present when multi-region evaluation is active.
- id string
- The provider-assigned unique ID for this managed resource.
- status string
- Onboarding status of the telemetry config feature for the organization. Valid values:
NOT_STARTED,STARTING,FAILED_START,RUNNING,STOPPING,FAILED_STOP,STOPPED.
- failure
Reason String - Reason for the failure status. Only populated if
statusisFAILED_STARTorFAILED_STOP. - home
Region String - AWS Region designated as the home region for multi-region telemetry evaluation. Only present when multi-region evaluation is active.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Onboarding status of the telemetry config feature for the organization. Valid values:
NOT_STARTED,STARTING,FAILED_START,RUNNING,STOPPING,FAILED_STOP,STOPPED.
- failure
Reason string - Reason for the failure status. Only populated if
statusisFAILED_STARTorFAILED_STOP. - home
Region string - AWS Region designated as the home region for multi-region telemetry evaluation. Only present when multi-region evaluation is active.
- id string
- The provider-assigned unique ID for this managed resource.
- status string
- Onboarding status of the telemetry config feature for the organization. Valid values:
NOT_STARTED,STARTING,FAILED_START,RUNNING,STOPPING,FAILED_STOP,STOPPED.
- failure_
reason str - Reason for the failure status. Only populated if
statusisFAILED_STARTorFAILED_STOP. - home_
region str - AWS Region designated as the home region for multi-region telemetry evaluation. Only present when multi-region evaluation is active.
- id str
- The provider-assigned unique ID for this managed resource.
- status str
- Onboarding status of the telemetry config feature for the organization. Valid values:
NOT_STARTED,STARTING,FAILED_START,RUNNING,STOPPING,FAILED_STOP,STOPPED.
- failure
Reason String - Reason for the failure status. Only populated if
statusisFAILED_STARTorFAILED_STOP. - home
Region String - AWS Region designated as the home region for multi-region telemetry evaluation. Only present when multi-region evaluation is active.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Onboarding status of the telemetry config feature for the organization. Valid values:
NOT_STARTED,STARTING,FAILED_START,RUNNING,STOPPING,FAILED_STOP,STOPPED.
Look up Existing TelemetryEvaluationForOrganization Resource
Get an existing TelemetryEvaluationForOrganization resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: TelemetryEvaluationForOrganizationState, opts?: CustomResourceOptions): TelemetryEvaluationForOrganization@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
all_regions: Optional[bool] = None,
failure_reason: Optional[str] = None,
home_region: Optional[str] = None,
region: Optional[str] = None,
regions: Optional[Sequence[str]] = None,
status: Optional[str] = None,
timeouts: Optional[TelemetryEvaluationForOrganizationTimeoutsArgs] = None) -> TelemetryEvaluationForOrganizationfunc GetTelemetryEvaluationForOrganization(ctx *Context, name string, id IDInput, state *TelemetryEvaluationForOrganizationState, opts ...ResourceOption) (*TelemetryEvaluationForOrganization, error)public static TelemetryEvaluationForOrganization Get(string name, Input<string> id, TelemetryEvaluationForOrganizationState? state, CustomResourceOptions? opts = null)public static TelemetryEvaluationForOrganization get(String name, Output<String> id, TelemetryEvaluationForOrganizationState state, CustomResourceOptions options)resources: _: type: aws:observabilityadmin:TelemetryEvaluationForOrganization get: id: ${id}import {
to = aws_observabilityadmin_telemetryevaluationfororganization.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- All
Regions bool - Whether to start telemetry evaluation in all AWS Regions where CloudWatch Observability Admin is available. The current region becomes the home region. Mutually exclusive with
regions. - Failure
Reason string - Reason for the failure status. Only populated if
statusisFAILED_STARTorFAILED_STOP. - Home
Region string - AWS Region designated as the home region for multi-region telemetry evaluation. Only present when multi-region evaluation is active.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Regions List<string>
- List of AWS Regions to include in multi-region telemetry evaluation. The current region is always implicitly included. Mutually exclusive with
allRegions. - Status string
- Onboarding status of the telemetry config feature for the organization. Valid values:
NOT_STARTED,STARTING,FAILED_START,RUNNING,STOPPING,FAILED_STOP,STOPPED. - Timeouts
Telemetry
Evaluation For Organization Timeouts
- All
Regions bool - Whether to start telemetry evaluation in all AWS Regions where CloudWatch Observability Admin is available. The current region becomes the home region. Mutually exclusive with
regions. - Failure
Reason string - Reason for the failure status. Only populated if
statusisFAILED_STARTorFAILED_STOP. - Home
Region string - AWS Region designated as the home region for multi-region telemetry evaluation. Only present when multi-region evaluation is active.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Regions []string
- List of AWS Regions to include in multi-region telemetry evaluation. The current region is always implicitly included. Mutually exclusive with
allRegions. - Status string
- Onboarding status of the telemetry config feature for the organization. Valid values:
NOT_STARTED,STARTING,FAILED_START,RUNNING,STOPPING,FAILED_STOP,STOPPED. - Timeouts
Telemetry
Evaluation For Organization Timeouts Args
- all_
regions bool - Whether to start telemetry evaluation in all AWS Regions where CloudWatch Observability Admin is available. The current region becomes the home region. Mutually exclusive with
regions. - failure_
reason string - Reason for the failure status. Only populated if
statusisFAILED_STARTorFAILED_STOP. - home_
region string - AWS Region designated as the home region for multi-region telemetry evaluation. Only present when multi-region evaluation is active.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- regions list(string)
- List of AWS Regions to include in multi-region telemetry evaluation. The current region is always implicitly included. Mutually exclusive with
allRegions. - status string
- Onboarding status of the telemetry config feature for the organization. Valid values:
NOT_STARTED,STARTING,FAILED_START,RUNNING,STOPPING,FAILED_STOP,STOPPED. - timeouts object
- all
Regions Boolean - Whether to start telemetry evaluation in all AWS Regions where CloudWatch Observability Admin is available. The current region becomes the home region. Mutually exclusive with
regions. - failure
Reason String - Reason for the failure status. Only populated if
statusisFAILED_STARTorFAILED_STOP. - home
Region String - AWS Region designated as the home region for multi-region telemetry evaluation. Only present when multi-region evaluation is active.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- regions List<String>
- List of AWS Regions to include in multi-region telemetry evaluation. The current region is always implicitly included. Mutually exclusive with
allRegions. - status String
- Onboarding status of the telemetry config feature for the organization. Valid values:
NOT_STARTED,STARTING,FAILED_START,RUNNING,STOPPING,FAILED_STOP,STOPPED. - timeouts
Telemetry
Evaluation For Organization Timeouts
- all
Regions boolean - Whether to start telemetry evaluation in all AWS Regions where CloudWatch Observability Admin is available. The current region becomes the home region. Mutually exclusive with
regions. - failure
Reason string - Reason for the failure status. Only populated if
statusisFAILED_STARTorFAILED_STOP. - home
Region string - AWS Region designated as the home region for multi-region telemetry evaluation. Only present when multi-region evaluation is active.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- regions string[]
- List of AWS Regions to include in multi-region telemetry evaluation. The current region is always implicitly included. Mutually exclusive with
allRegions. - status string
- Onboarding status of the telemetry config feature for the organization. Valid values:
NOT_STARTED,STARTING,FAILED_START,RUNNING,STOPPING,FAILED_STOP,STOPPED. - timeouts
Telemetry
Evaluation For Organization Timeouts
- all_
regions bool - Whether to start telemetry evaluation in all AWS Regions where CloudWatch Observability Admin is available. The current region becomes the home region. Mutually exclusive with
regions. - failure_
reason str - Reason for the failure status. Only populated if
statusisFAILED_STARTorFAILED_STOP. - home_
region str - AWS Region designated as the home region for multi-region telemetry evaluation. Only present when multi-region evaluation is active.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- regions Sequence[str]
- List of AWS Regions to include in multi-region telemetry evaluation. The current region is always implicitly included. Mutually exclusive with
allRegions. - status str
- Onboarding status of the telemetry config feature for the organization. Valid values:
NOT_STARTED,STARTING,FAILED_START,RUNNING,STOPPING,FAILED_STOP,STOPPED. - timeouts
Telemetry
Evaluation For Organization Timeouts Args
- all
Regions Boolean - Whether to start telemetry evaluation in all AWS Regions where CloudWatch Observability Admin is available. The current region becomes the home region. Mutually exclusive with
regions. - failure
Reason String - Reason for the failure status. Only populated if
statusisFAILED_STARTorFAILED_STOP. - home
Region String - AWS Region designated as the home region for multi-region telemetry evaluation. Only present when multi-region evaluation is active.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- regions List<String>
- List of AWS Regions to include in multi-region telemetry evaluation. The current region is always implicitly included. Mutually exclusive with
allRegions. - status String
- Onboarding status of the telemetry config feature for the organization. Valid values:
NOT_STARTED,STARTING,FAILED_START,RUNNING,STOPPING,FAILED_STOP,STOPPED. - timeouts Property Map
Supporting Types
TelemetryEvaluationForOrganizationTimeouts, TelemetryEvaluationForOrganizationTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
Import
Identity Schema
Optional
accountId(String) AWS Account where this resource is managed.region(String) Region where this resource is managed.
Using pulumi import, import CloudWatch Observability Admin Telemetry Evaluation For Organization using the region name. For example:
$ pulumi import aws:observabilityadmin/telemetryEvaluationForOrganization:TelemetryEvaluationForOrganization example us-west-2
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.
published on Friday, May 29, 2026 by Pulumi