1. Packages
  2. Packages
  3. AWS
  4. API Docs
  5. observabilityadmin
  6. TelemetryEnrichment
Viewing docs for AWS v7.28.0
published on Thursday, Apr 30, 2026 by Pulumi
aws logo
Viewing docs for AWS v7.28.0
published on Thursday, Apr 30, 2026 by Pulumi

    Manages an AWS CloudWatch Observability Admin Telemetry Enrichment.

    Telemetry enrichment enables resource tags for telemetry data in your account, enhancing telemetry with additional resource metadata from AWS Resource Explorer to provide richer context for monitoring and observability.

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

    NOTE: Only one telemetry enrichment 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.TelemetryEnrichment("example", {});
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.observabilityadmin.TelemetryEnrichment("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.NewTelemetryEnrichment(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.TelemetryEnrichment("example");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.observabilityadmin.TelemetryEnrichment;
    import java.util.List;
    import java.util.ArrayList;
    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 TelemetryEnrichment("example");
    
        }
    }
    
    resources:
      example:
        type: aws:observabilityadmin:TelemetryEnrichment
    

    Create TelemetryEnrichment Resource

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

    Constructor syntax

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

    Parameters

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

    TelemetryEnrichment 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 TelemetryEnrichment 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 TelemetryEnrichmentTimeouts
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Timeouts TelemetryEnrichmentTimeoutsArgs
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    timeouts TelemetryEnrichmentTimeouts
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    timeouts TelemetryEnrichmentTimeouts
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    timeouts TelemetryEnrichmentTimeoutsArgs
    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 TelemetryEnrichment resource produces the following output properties:

    AwsResourceExplorerManagedViewArn string
    ARN of the AWS Resource Explorer managed view created for the telemetry enrichment feature.
    Id string
    The provider-assigned unique ID for this managed resource.
    AwsResourceExplorerManagedViewArn string
    ARN of the AWS Resource Explorer managed view created for the telemetry enrichment feature.
    Id string
    The provider-assigned unique ID for this managed resource.
    awsResourceExplorerManagedViewArn String
    ARN of the AWS Resource Explorer managed view created for the telemetry enrichment feature.
    id String
    The provider-assigned unique ID for this managed resource.
    awsResourceExplorerManagedViewArn string
    ARN of the AWS Resource Explorer managed view created for the telemetry enrichment feature.
    id string
    The provider-assigned unique ID for this managed resource.
    aws_resource_explorer_managed_view_arn str
    ARN of the AWS Resource Explorer managed view created for the telemetry enrichment feature.
    id str
    The provider-assigned unique ID for this managed resource.
    awsResourceExplorerManagedViewArn String
    ARN of the AWS Resource Explorer managed view created for the telemetry enrichment feature.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing TelemetryEnrichment Resource

    Get an existing TelemetryEnrichment 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?: TelemetryEnrichmentState, opts?: CustomResourceOptions): TelemetryEnrichment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            aws_resource_explorer_managed_view_arn: Optional[str] = None,
            region: Optional[str] = None,
            timeouts: Optional[TelemetryEnrichmentTimeoutsArgs] = None) -> TelemetryEnrichment
    func GetTelemetryEnrichment(ctx *Context, name string, id IDInput, state *TelemetryEnrichmentState, opts ...ResourceOption) (*TelemetryEnrichment, error)
    public static TelemetryEnrichment Get(string name, Input<string> id, TelemetryEnrichmentState? state, CustomResourceOptions? opts = null)
    public static TelemetryEnrichment get(String name, Output<String> id, TelemetryEnrichmentState state, CustomResourceOptions options)
    resources:  _:    type: aws:observabilityadmin:TelemetryEnrichment    get:      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:
    AwsResourceExplorerManagedViewArn string
    ARN of the AWS Resource Explorer managed view created for the telemetry enrichment feature.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Timeouts TelemetryEnrichmentTimeouts
    AwsResourceExplorerManagedViewArn string
    ARN of the AWS Resource Explorer managed view created for the telemetry enrichment feature.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Timeouts TelemetryEnrichmentTimeoutsArgs
    awsResourceExplorerManagedViewArn String
    ARN of the AWS Resource Explorer managed view created for the telemetry enrichment feature.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    timeouts TelemetryEnrichmentTimeouts
    awsResourceExplorerManagedViewArn string
    ARN of the AWS Resource Explorer managed view created for the telemetry enrichment feature.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    timeouts TelemetryEnrichmentTimeouts
    aws_resource_explorer_managed_view_arn str
    ARN of the AWS Resource Explorer managed view created for the telemetry enrichment feature.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    timeouts TelemetryEnrichmentTimeoutsArgs
    awsResourceExplorerManagedViewArn String
    ARN of the AWS Resource Explorer managed view created for the telemetry enrichment feature.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    timeouts Property Map

    Supporting Types

    TelemetryEnrichmentTimeouts, TelemetryEnrichmentTimeoutsArgs

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

    $ pulumi import aws:observabilityadmin/telemetryEnrichment:TelemetryEnrichment 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.28.0
    published on Thursday, Apr 30, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.