1. Packages
  2. Packages
  3. AWS
  4. API Docs
  5. observabilityadmin
  6. TelemetryEvaluation
Viewing docs for AWS v7.32.0
published on Friday, May 29, 2026 by Pulumi
aws logo
Viewing docs for AWS v7.32.0
published on Friday, May 29, 2026 by Pulumi

    Manages an AWS CloudWatch Observability Admin Telemetry Evaluation.

    Telemetry evaluation begins onboarding the caller AWS account to the telemetry config feature, enabling CloudWatch to evaluate and discover the state of telemetry configuration for your AWS resources.

    For more information, see the AWS CloudWatch Observability Admin documentation.

    NOTE: Only one telemetry evaluation can exist per account per region. Creating this resource enables the feature; destroying it disables the feature.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.observabilityadmin.TelemetryEvaluation("example", {});
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.observabilityadmin.TelemetryEvaluation("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.NewTelemetryEvaluation(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.TelemetryEvaluation("example");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.observabilityadmin.TelemetryEvaluation;
    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 TelemetryEvaluation("example");
    
        }
    }
    
    resources:
      example:
        type: aws:observabilityadmin:TelemetryEvaluation
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_observabilityadmin_telemetryevaluation" "example" {
    }
    

    Create TelemetryEvaluation Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new TelemetryEvaluation(name: string, args?: TelemetryEvaluationArgs, opts?: CustomResourceOptions);
    @overload
    def TelemetryEvaluation(resource_name: str,
                            args: Optional[TelemetryEvaluationArgs] = None,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def TelemetryEvaluation(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            region: Optional[str] = None,
                            timeouts: Optional[TelemetryEvaluationTimeoutsArgs] = None)
    func NewTelemetryEvaluation(ctx *Context, name string, args *TelemetryEvaluationArgs, opts ...ResourceOption) (*TelemetryEvaluation, error)
    public TelemetryEvaluation(string name, TelemetryEvaluationArgs? args = null, CustomResourceOptions? opts = null)
    public TelemetryEvaluation(String name, TelemetryEvaluationArgs args)
    public TelemetryEvaluation(String name, TelemetryEvaluationArgs args, CustomResourceOptions options)
    
    type: aws:observabilityadmin:TelemetryEvaluation
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "aws_observabilityadmin_telemetryevaluation" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args TelemetryEvaluationArgs
    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 TelemetryEvaluationArgs
    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 TelemetryEvaluationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TelemetryEvaluationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TelemetryEvaluationArgs
    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 telemetryEvaluationResource = new Aws.Observabilityadmin.TelemetryEvaluation("telemetryEvaluationResource", new()
    {
        Region = "string",
        Timeouts = new Aws.Observabilityadmin.Inputs.TelemetryEvaluationTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
    });
    
    example, err := observabilityadmin.NewTelemetryEvaluation(ctx, "telemetryEvaluationResource", &observabilityadmin.TelemetryEvaluationArgs{
    	Region: pulumi.String("string"),
    	Timeouts: &observabilityadmin.TelemetryEvaluationTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    	},
    })
    
    resource "aws_observabilityadmin_telemetryevaluation" "telemetryEvaluationResource" {
      region = "string"
      timeouts = {
        create = "string"
        delete = "string"
      }
    }
    
    var telemetryEvaluationResource = new TelemetryEvaluation("telemetryEvaluationResource", TelemetryEvaluationArgs.builder()
        .region("string")
        .timeouts(TelemetryEvaluationTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .build());
    
    telemetry_evaluation_resource = aws.observabilityadmin.TelemetryEvaluation("telemetryEvaluationResource",
        region="string",
        timeouts={
            "create": "string",
            "delete": "string",
        })
    
    const telemetryEvaluationResource = new aws.observabilityadmin.TelemetryEvaluation("telemetryEvaluationResource", {
        region: "string",
        timeouts: {
            create: "string",
            "delete": "string",
        },
    });
    
    type: aws:observabilityadmin:TelemetryEvaluation
    properties:
        region: string
        timeouts:
            create: string
            delete: string
    

    TelemetryEvaluation 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 TelemetryEvaluation resource accepts the following input properties:

    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Timeouts TelemetryEvaluationTimeouts
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Timeouts TelemetryEvaluationTimeoutsArgs
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    timeouts object
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    timeouts TelemetryEvaluationTimeouts
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    timeouts TelemetryEvaluationTimeouts
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    timeouts TelemetryEvaluationTimeoutsArgs
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TelemetryEvaluation resource produces the following output properties:

    FailureReason string
    Reason for the failure status. Only populated if status is FAILED_START or FAILED_STOP.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Onboarding status of the telemetry config feature. Valid values: NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED.
    FailureReason string
    Reason for the failure status. Only populated if status is FAILED_START or FAILED_STOP.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Onboarding status of the telemetry config feature. Valid values: NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED.
    failure_reason string
    Reason for the failure status. Only populated if status is FAILED_START or FAILED_STOP.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    Onboarding status of the telemetry config feature. Valid values: NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED.
    failureReason String
    Reason for the failure status. Only populated if status is FAILED_START or FAILED_STOP.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Onboarding status of the telemetry config feature. Valid values: NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED.
    failureReason string
    Reason for the failure status. Only populated if status is FAILED_START or FAILED_STOP.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    Onboarding status of the telemetry config feature. Valid values: NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED.
    failure_reason str
    Reason for the failure status. Only populated if status is FAILED_START or FAILED_STOP.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    Onboarding status of the telemetry config feature. Valid values: NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED.
    failureReason String
    Reason for the failure status. Only populated if status is FAILED_START or FAILED_STOP.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Onboarding status of the telemetry config feature. Valid values: NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED.

    Look up Existing TelemetryEvaluation Resource

    Get an existing TelemetryEvaluation 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?: TelemetryEvaluationState, opts?: CustomResourceOptions): TelemetryEvaluation
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            failure_reason: Optional[str] = None,
            region: Optional[str] = None,
            status: Optional[str] = None,
            timeouts: Optional[TelemetryEvaluationTimeoutsArgs] = None) -> TelemetryEvaluation
    func GetTelemetryEvaluation(ctx *Context, name string, id IDInput, state *TelemetryEvaluationState, opts ...ResourceOption) (*TelemetryEvaluation, error)
    public static TelemetryEvaluation Get(string name, Input<string> id, TelemetryEvaluationState? state, CustomResourceOptions? opts = null)
    public static TelemetryEvaluation get(String name, Output<String> id, TelemetryEvaluationState state, CustomResourceOptions options)
    resources:  _:    type: aws:observabilityadmin:TelemetryEvaluation    get:      id: ${id}
    import {
      to = aws_observabilityadmin_telemetryevaluation.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.
    The following state arguments are supported:
    FailureReason string
    Reason for the failure status. Only populated if status is FAILED_START or FAILED_STOP.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Status string
    Onboarding status of the telemetry config feature. Valid values: NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED.
    Timeouts TelemetryEvaluationTimeouts
    FailureReason string
    Reason for the failure status. Only populated if status is FAILED_START or FAILED_STOP.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Status string
    Onboarding status of the telemetry config feature. Valid values: NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED.
    Timeouts TelemetryEvaluationTimeoutsArgs
    failure_reason string
    Reason for the failure status. Only populated if status is FAILED_START or FAILED_STOP.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    status string
    Onboarding status of the telemetry config feature. Valid values: NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED.
    timeouts object
    failureReason String
    Reason for the failure status. Only populated if status is FAILED_START or FAILED_STOP.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    status String
    Onboarding status of the telemetry config feature. Valid values: NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED.
    timeouts TelemetryEvaluationTimeouts
    failureReason string
    Reason for the failure status. Only populated if status is FAILED_START or FAILED_STOP.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    status string
    Onboarding status of the telemetry config feature. Valid values: NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED.
    timeouts TelemetryEvaluationTimeouts
    failure_reason str
    Reason for the failure status. Only populated if status is FAILED_START or FAILED_STOP.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    status str
    Onboarding status of the telemetry config feature. Valid values: NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED.
    timeouts TelemetryEvaluationTimeoutsArgs
    failureReason String
    Reason for the failure status. Only populated if status is FAILED_START or FAILED_STOP.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    status String
    Onboarding status of the telemetry config feature. Valid values: NOT_STARTED, STARTING, FAILED_START, RUNNING, STOPPING, FAILED_STOP, STOPPED.
    timeouts Property Map

    Supporting Types

    TelemetryEvaluationTimeouts, TelemetryEvaluationTimeoutsArgs

    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 using the region name. For example:

    $ pulumi import aws:observabilityadmin/telemetryEvaluation:TelemetryEvaluation 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 aws Terraform Provider.
    aws logo
    Viewing docs for AWS v7.32.0
    published on Friday, May 29, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial