1. Packages
  2. Wavefront Provider
  3. API Docs
  4. CloudIntegrationCloudwatch
wavefront 5.1.0 published on Wednesday, Jan 21, 2026 by vmware
wavefront logo
wavefront 5.1.0 published on Wednesday, Jan 21, 2026 by vmware

    Provides a Wavefront Cloud Integration for CloudWatch. This allows CloudWatch cloud integrations to be created, updated, and deleted.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as wavefront from "@pulumi/wavefront";
    
    const extId = new wavefront.CloudIntegrationAwsExternalId("ext_id", {});
    const cloudwatch = new wavefront.CloudIntegrationCloudwatch("cloudwatch", {
        name: "Test Integration",
        forceSave: true,
        roleArn: "arn:aws::1234567:role/example-arn",
        externalId: extId.cloudIntegrationAwsExternalIdId,
    });
    
    import pulumi
    import pulumi_wavefront as wavefront
    
    ext_id = wavefront.CloudIntegrationAwsExternalId("ext_id")
    cloudwatch = wavefront.CloudIntegrationCloudwatch("cloudwatch",
        name="Test Integration",
        force_save=True,
        role_arn="arn:aws::1234567:role/example-arn",
        external_id=ext_id.cloud_integration_aws_external_id_id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/wavefront/v5/wavefront"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		extId, err := wavefront.NewCloudIntegrationAwsExternalId(ctx, "ext_id", nil)
    		if err != nil {
    			return err
    		}
    		_, err = wavefront.NewCloudIntegrationCloudwatch(ctx, "cloudwatch", &wavefront.CloudIntegrationCloudwatchArgs{
    			Name:       pulumi.String("Test Integration"),
    			ForceSave:  pulumi.Bool(true),
    			RoleArn:    pulumi.String("arn:aws::1234567:role/example-arn"),
    			ExternalId: extId.CloudIntegrationAwsExternalIdId,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Wavefront = Pulumi.Wavefront;
    
    return await Deployment.RunAsync(() => 
    {
        var extId = new Wavefront.CloudIntegrationAwsExternalId("ext_id");
    
        var cloudwatch = new Wavefront.CloudIntegrationCloudwatch("cloudwatch", new()
        {
            Name = "Test Integration",
            ForceSave = true,
            RoleArn = "arn:aws::1234567:role/example-arn",
            ExternalId = extId.CloudIntegrationAwsExternalIdId,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.wavefront.CloudIntegrationAwsExternalId;
    import com.pulumi.wavefront.CloudIntegrationCloudwatch;
    import com.pulumi.wavefront.CloudIntegrationCloudwatchArgs;
    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 extId = new CloudIntegrationAwsExternalId("extId");
    
            var cloudwatch = new CloudIntegrationCloudwatch("cloudwatch", CloudIntegrationCloudwatchArgs.builder()
                .name("Test Integration")
                .forceSave(true)
                .roleArn("arn:aws::1234567:role/example-arn")
                .externalId(extId.cloudIntegrationAwsExternalIdId())
                .build());
    
        }
    }
    
    resources:
      extId:
        type: wavefront:CloudIntegrationAwsExternalId
        name: ext_id
      cloudwatch:
        type: wavefront:CloudIntegrationCloudwatch
        properties:
          name: Test Integration
          forceSave: true
          roleArn: arn:aws::1234567:role/example-arn
          externalId: ${extId.cloudIntegrationAwsExternalIdId}
    

    Create CloudIntegrationCloudwatch Resource

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

    Constructor syntax

    new CloudIntegrationCloudwatch(name: string, args: CloudIntegrationCloudwatchArgs, opts?: CustomResourceOptions);
    @overload
    def CloudIntegrationCloudwatch(resource_name: str,
                                   args: CloudIntegrationCloudwatchArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudIntegrationCloudwatch(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   external_id: Optional[str] = None,
                                   role_arn: Optional[str] = None,
                                   force_save: Optional[bool] = None,
                                   additional_tags: Optional[Mapping[str, str]] = None,
                                   instance_selection_tags: Optional[Mapping[str, str]] = None,
                                   metric_filter_regex: Optional[str] = None,
                                   name: Optional[str] = None,
                                   namespaces: Optional[Sequence[str]] = None,
                                   point_tag_filter_regex: Optional[str] = None,
                                   cloud_integration_cloudwatch_id: Optional[str] = None,
                                   service: Optional[str] = None,
                                   service_refresh_rate_in_minutes: Optional[float] = None,
                                   volume_selection_tags: Optional[Mapping[str, str]] = None)
    func NewCloudIntegrationCloudwatch(ctx *Context, name string, args CloudIntegrationCloudwatchArgs, opts ...ResourceOption) (*CloudIntegrationCloudwatch, error)
    public CloudIntegrationCloudwatch(string name, CloudIntegrationCloudwatchArgs args, CustomResourceOptions? opts = null)
    public CloudIntegrationCloudwatch(String name, CloudIntegrationCloudwatchArgs args)
    public CloudIntegrationCloudwatch(String name, CloudIntegrationCloudwatchArgs args, CustomResourceOptions options)
    
    type: wavefront:CloudIntegrationCloudwatch
    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 CloudIntegrationCloudwatchArgs
    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 CloudIntegrationCloudwatchArgs
    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 CloudIntegrationCloudwatchArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudIntegrationCloudwatchArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudIntegrationCloudwatchArgs
    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 cloudIntegrationCloudwatchResource = new Wavefront.CloudIntegrationCloudwatch("cloudIntegrationCloudwatchResource", new()
    {
        ExternalId = "string",
        RoleArn = "string",
        ForceSave = false,
        AdditionalTags = 
        {
            { "string", "string" },
        },
        InstanceSelectionTags = 
        {
            { "string", "string" },
        },
        MetricFilterRegex = "string",
        Name = "string",
        Namespaces = new[]
        {
            "string",
        },
        PointTagFilterRegex = "string",
        CloudIntegrationCloudwatchId = "string",
        Service = "string",
        ServiceRefreshRateInMinutes = 0,
        VolumeSelectionTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := wavefront.NewCloudIntegrationCloudwatch(ctx, "cloudIntegrationCloudwatchResource", &wavefront.CloudIntegrationCloudwatchArgs{
    	ExternalId: pulumi.String("string"),
    	RoleArn:    pulumi.String("string"),
    	ForceSave:  pulumi.Bool(false),
    	AdditionalTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	InstanceSelectionTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	MetricFilterRegex: pulumi.String("string"),
    	Name:              pulumi.String("string"),
    	Namespaces: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	PointTagFilterRegex:          pulumi.String("string"),
    	CloudIntegrationCloudwatchId: pulumi.String("string"),
    	Service:                      pulumi.String("string"),
    	ServiceRefreshRateInMinutes:  pulumi.Float64(0),
    	VolumeSelectionTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var cloudIntegrationCloudwatchResource = new CloudIntegrationCloudwatch("cloudIntegrationCloudwatchResource", CloudIntegrationCloudwatchArgs.builder()
        .externalId("string")
        .roleArn("string")
        .forceSave(false)
        .additionalTags(Map.of("string", "string"))
        .instanceSelectionTags(Map.of("string", "string"))
        .metricFilterRegex("string")
        .name("string")
        .namespaces("string")
        .pointTagFilterRegex("string")
        .cloudIntegrationCloudwatchId("string")
        .service("string")
        .serviceRefreshRateInMinutes(0.0)
        .volumeSelectionTags(Map.of("string", "string"))
        .build());
    
    cloud_integration_cloudwatch_resource = wavefront.CloudIntegrationCloudwatch("cloudIntegrationCloudwatchResource",
        external_id="string",
        role_arn="string",
        force_save=False,
        additional_tags={
            "string": "string",
        },
        instance_selection_tags={
            "string": "string",
        },
        metric_filter_regex="string",
        name="string",
        namespaces=["string"],
        point_tag_filter_regex="string",
        cloud_integration_cloudwatch_id="string",
        service="string",
        service_refresh_rate_in_minutes=0,
        volume_selection_tags={
            "string": "string",
        })
    
    const cloudIntegrationCloudwatchResource = new wavefront.CloudIntegrationCloudwatch("cloudIntegrationCloudwatchResource", {
        externalId: "string",
        roleArn: "string",
        forceSave: false,
        additionalTags: {
            string: "string",
        },
        instanceSelectionTags: {
            string: "string",
        },
        metricFilterRegex: "string",
        name: "string",
        namespaces: ["string"],
        pointTagFilterRegex: "string",
        cloudIntegrationCloudwatchId: "string",
        service: "string",
        serviceRefreshRateInMinutes: 0,
        volumeSelectionTags: {
            string: "string",
        },
    });
    
    type: wavefront:CloudIntegrationCloudwatch
    properties:
        additionalTags:
            string: string
        cloudIntegrationCloudwatchId: string
        externalId: string
        forceSave: false
        instanceSelectionTags:
            string: string
        metricFilterRegex: string
        name: string
        namespaces:
            - string
        pointTagFilterRegex: string
        roleArn: string
        service: string
        serviceRefreshRateInMinutes: 0
        volumeSelectionTags:
            string: string
    

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

    ExternalId string
    The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
    RoleArn string
    The external ID corresponding to the Role ARN.
    AdditionalTags Dictionary<string, string>
    A list of point tag key-values to add to every point ingested using this integration.
    CloudIntegrationCloudwatchId string
    ForceSave bool
    Forces this resource to save, even if errors are present.
    InstanceSelectionTags Dictionary<string, string>
    A string->string map allow list of instance tag-value pairs (in AWS). If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested. Multiple entries are OR'ed.
    MetricFilterRegex string
    A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
    Name string
    The human-readable name of this integration.
    Namespaces List<string>
    A list of namespaces that limit what we query from CloudWatch.
    PointTagFilterRegex string
    A regular expression that AWS tag key name must match (case-insensitively) in order to be ingested.
    Service string
    A value denoting which cloud service this service integrates with.
    ServiceRefreshRateInMinutes double
    How often, in minutes, to refresh the service.
    VolumeSelectionTags Dictionary<string, string>
    A string->string map of allow list of volume tag-value pairs (in AWS). If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested. Multiple entries are OR'ed.
    ExternalId string
    The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
    RoleArn string
    The external ID corresponding to the Role ARN.
    AdditionalTags map[string]string
    A list of point tag key-values to add to every point ingested using this integration.
    CloudIntegrationCloudwatchId string
    ForceSave bool
    Forces this resource to save, even if errors are present.
    InstanceSelectionTags map[string]string
    A string->string map allow list of instance tag-value pairs (in AWS). If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested. Multiple entries are OR'ed.
    MetricFilterRegex string
    A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
    Name string
    The human-readable name of this integration.
    Namespaces []string
    A list of namespaces that limit what we query from CloudWatch.
    PointTagFilterRegex string
    A regular expression that AWS tag key name must match (case-insensitively) in order to be ingested.
    Service string
    A value denoting which cloud service this service integrates with.
    ServiceRefreshRateInMinutes float64
    How often, in minutes, to refresh the service.
    VolumeSelectionTags map[string]string
    A string->string map of allow list of volume tag-value pairs (in AWS). If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested. Multiple entries are OR'ed.
    externalId String
    The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
    roleArn String
    The external ID corresponding to the Role ARN.
    additionalTags Map<String,String>
    A list of point tag key-values to add to every point ingested using this integration.
    cloudIntegrationCloudwatchId String
    forceSave Boolean
    Forces this resource to save, even if errors are present.
    instanceSelectionTags Map<String,String>
    A string->string map allow list of instance tag-value pairs (in AWS). If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested. Multiple entries are OR'ed.
    metricFilterRegex String
    A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
    name String
    The human-readable name of this integration.
    namespaces List<String>
    A list of namespaces that limit what we query from CloudWatch.
    pointTagFilterRegex String
    A regular expression that AWS tag key name must match (case-insensitively) in order to be ingested.
    service String
    A value denoting which cloud service this service integrates with.
    serviceRefreshRateInMinutes Double
    How often, in minutes, to refresh the service.
    volumeSelectionTags Map<String,String>
    A string->string map of allow list of volume tag-value pairs (in AWS). If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested. Multiple entries are OR'ed.
    externalId string
    The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
    roleArn string
    The external ID corresponding to the Role ARN.
    additionalTags {[key: string]: string}
    A list of point tag key-values to add to every point ingested using this integration.
    cloudIntegrationCloudwatchId string
    forceSave boolean
    Forces this resource to save, even if errors are present.
    instanceSelectionTags {[key: string]: string}
    A string->string map allow list of instance tag-value pairs (in AWS). If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested. Multiple entries are OR'ed.
    metricFilterRegex string
    A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
    name string
    The human-readable name of this integration.
    namespaces string[]
    A list of namespaces that limit what we query from CloudWatch.
    pointTagFilterRegex string
    A regular expression that AWS tag key name must match (case-insensitively) in order to be ingested.
    service string
    A value denoting which cloud service this service integrates with.
    serviceRefreshRateInMinutes number
    How often, in minutes, to refresh the service.
    volumeSelectionTags {[key: string]: string}
    A string->string map of allow list of volume tag-value pairs (in AWS). If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested. Multiple entries are OR'ed.
    external_id str
    The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
    role_arn str
    The external ID corresponding to the Role ARN.
    additional_tags Mapping[str, str]
    A list of point tag key-values to add to every point ingested using this integration.
    cloud_integration_cloudwatch_id str
    force_save bool
    Forces this resource to save, even if errors are present.
    instance_selection_tags Mapping[str, str]
    A string->string map allow list of instance tag-value pairs (in AWS). If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested. Multiple entries are OR'ed.
    metric_filter_regex str
    A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
    name str
    The human-readable name of this integration.
    namespaces Sequence[str]
    A list of namespaces that limit what we query from CloudWatch.
    point_tag_filter_regex str
    A regular expression that AWS tag key name must match (case-insensitively) in order to be ingested.
    service str
    A value denoting which cloud service this service integrates with.
    service_refresh_rate_in_minutes float
    How often, in minutes, to refresh the service.
    volume_selection_tags Mapping[str, str]
    A string->string map of allow list of volume tag-value pairs (in AWS). If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested. Multiple entries are OR'ed.
    externalId String
    The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
    roleArn String
    The external ID corresponding to the Role ARN.
    additionalTags Map<String>
    A list of point tag key-values to add to every point ingested using this integration.
    cloudIntegrationCloudwatchId String
    forceSave Boolean
    Forces this resource to save, even if errors are present.
    instanceSelectionTags Map<String>
    A string->string map allow list of instance tag-value pairs (in AWS). If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested. Multiple entries are OR'ed.
    metricFilterRegex String
    A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
    name String
    The human-readable name of this integration.
    namespaces List<String>
    A list of namespaces that limit what we query from CloudWatch.
    pointTagFilterRegex String
    A regular expression that AWS tag key name must match (case-insensitively) in order to be ingested.
    service String
    A value denoting which cloud service this service integrates with.
    serviceRefreshRateInMinutes Number
    How often, in minutes, to refresh the service.
    volumeSelectionTags Map<String>
    A string->string map of allow list of volume tag-value pairs (in AWS). If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested. Multiple entries are OR'ed.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing CloudIntegrationCloudwatch Resource

    Get an existing CloudIntegrationCloudwatch 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?: CloudIntegrationCloudwatchState, opts?: CustomResourceOptions): CloudIntegrationCloudwatch
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            additional_tags: Optional[Mapping[str, str]] = None,
            cloud_integration_cloudwatch_id: Optional[str] = None,
            external_id: Optional[str] = None,
            force_save: Optional[bool] = None,
            instance_selection_tags: Optional[Mapping[str, str]] = None,
            metric_filter_regex: Optional[str] = None,
            name: Optional[str] = None,
            namespaces: Optional[Sequence[str]] = None,
            point_tag_filter_regex: Optional[str] = None,
            role_arn: Optional[str] = None,
            service: Optional[str] = None,
            service_refresh_rate_in_minutes: Optional[float] = None,
            volume_selection_tags: Optional[Mapping[str, str]] = None) -> CloudIntegrationCloudwatch
    func GetCloudIntegrationCloudwatch(ctx *Context, name string, id IDInput, state *CloudIntegrationCloudwatchState, opts ...ResourceOption) (*CloudIntegrationCloudwatch, error)
    public static CloudIntegrationCloudwatch Get(string name, Input<string> id, CloudIntegrationCloudwatchState? state, CustomResourceOptions? opts = null)
    public static CloudIntegrationCloudwatch get(String name, Output<String> id, CloudIntegrationCloudwatchState state, CustomResourceOptions options)
    resources:  _:    type: wavefront:CloudIntegrationCloudwatch    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:
    AdditionalTags Dictionary<string, string>
    A list of point tag key-values to add to every point ingested using this integration.
    CloudIntegrationCloudwatchId string
    ExternalId string
    The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
    ForceSave bool
    Forces this resource to save, even if errors are present.
    InstanceSelectionTags Dictionary<string, string>
    A string->string map allow list of instance tag-value pairs (in AWS). If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested. Multiple entries are OR'ed.
    MetricFilterRegex string
    A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
    Name string
    The human-readable name of this integration.
    Namespaces List<string>
    A list of namespaces that limit what we query from CloudWatch.
    PointTagFilterRegex string
    A regular expression that AWS tag key name must match (case-insensitively) in order to be ingested.
    RoleArn string
    The external ID corresponding to the Role ARN.
    Service string
    A value denoting which cloud service this service integrates with.
    ServiceRefreshRateInMinutes double
    How often, in minutes, to refresh the service.
    VolumeSelectionTags Dictionary<string, string>
    A string->string map of allow list of volume tag-value pairs (in AWS). If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested. Multiple entries are OR'ed.
    AdditionalTags map[string]string
    A list of point tag key-values to add to every point ingested using this integration.
    CloudIntegrationCloudwatchId string
    ExternalId string
    The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
    ForceSave bool
    Forces this resource to save, even if errors are present.
    InstanceSelectionTags map[string]string
    A string->string map allow list of instance tag-value pairs (in AWS). If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested. Multiple entries are OR'ed.
    MetricFilterRegex string
    A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
    Name string
    The human-readable name of this integration.
    Namespaces []string
    A list of namespaces that limit what we query from CloudWatch.
    PointTagFilterRegex string
    A regular expression that AWS tag key name must match (case-insensitively) in order to be ingested.
    RoleArn string
    The external ID corresponding to the Role ARN.
    Service string
    A value denoting which cloud service this service integrates with.
    ServiceRefreshRateInMinutes float64
    How often, in minutes, to refresh the service.
    VolumeSelectionTags map[string]string
    A string->string map of allow list of volume tag-value pairs (in AWS). If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested. Multiple entries are OR'ed.
    additionalTags Map<String,String>
    A list of point tag key-values to add to every point ingested using this integration.
    cloudIntegrationCloudwatchId String
    externalId String
    The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
    forceSave Boolean
    Forces this resource to save, even if errors are present.
    instanceSelectionTags Map<String,String>
    A string->string map allow list of instance tag-value pairs (in AWS). If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested. Multiple entries are OR'ed.
    metricFilterRegex String
    A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
    name String
    The human-readable name of this integration.
    namespaces List<String>
    A list of namespaces that limit what we query from CloudWatch.
    pointTagFilterRegex String
    A regular expression that AWS tag key name must match (case-insensitively) in order to be ingested.
    roleArn String
    The external ID corresponding to the Role ARN.
    service String
    A value denoting which cloud service this service integrates with.
    serviceRefreshRateInMinutes Double
    How often, in minutes, to refresh the service.
    volumeSelectionTags Map<String,String>
    A string->string map of allow list of volume tag-value pairs (in AWS). If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested. Multiple entries are OR'ed.
    additionalTags {[key: string]: string}
    A list of point tag key-values to add to every point ingested using this integration.
    cloudIntegrationCloudwatchId string
    externalId string
    The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
    forceSave boolean
    Forces this resource to save, even if errors are present.
    instanceSelectionTags {[key: string]: string}
    A string->string map allow list of instance tag-value pairs (in AWS). If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested. Multiple entries are OR'ed.
    metricFilterRegex string
    A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
    name string
    The human-readable name of this integration.
    namespaces string[]
    A list of namespaces that limit what we query from CloudWatch.
    pointTagFilterRegex string
    A regular expression that AWS tag key name must match (case-insensitively) in order to be ingested.
    roleArn string
    The external ID corresponding to the Role ARN.
    service string
    A value denoting which cloud service this service integrates with.
    serviceRefreshRateInMinutes number
    How often, in minutes, to refresh the service.
    volumeSelectionTags {[key: string]: string}
    A string->string map of allow list of volume tag-value pairs (in AWS). If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested. Multiple entries are OR'ed.
    additional_tags Mapping[str, str]
    A list of point tag key-values to add to every point ingested using this integration.
    cloud_integration_cloudwatch_id str
    external_id str
    The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
    force_save bool
    Forces this resource to save, even if errors are present.
    instance_selection_tags Mapping[str, str]
    A string->string map allow list of instance tag-value pairs (in AWS). If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested. Multiple entries are OR'ed.
    metric_filter_regex str
    A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
    name str
    The human-readable name of this integration.
    namespaces Sequence[str]
    A list of namespaces that limit what we query from CloudWatch.
    point_tag_filter_regex str
    A regular expression that AWS tag key name must match (case-insensitively) in order to be ingested.
    role_arn str
    The external ID corresponding to the Role ARN.
    service str
    A value denoting which cloud service this service integrates with.
    service_refresh_rate_in_minutes float
    How often, in minutes, to refresh the service.
    volume_selection_tags Mapping[str, str]
    A string->string map of allow list of volume tag-value pairs (in AWS). If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested. Multiple entries are OR'ed.
    additionalTags Map<String>
    A list of point tag key-values to add to every point ingested using this integration.
    cloudIntegrationCloudwatchId String
    externalId String
    The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
    forceSave Boolean
    Forces this resource to save, even if errors are present.
    instanceSelectionTags Map<String>
    A string->string map allow list of instance tag-value pairs (in AWS). If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested. Multiple entries are OR'ed.
    metricFilterRegex String
    A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
    name String
    The human-readable name of this integration.
    namespaces List<String>
    A list of namespaces that limit what we query from CloudWatch.
    pointTagFilterRegex String
    A regular expression that AWS tag key name must match (case-insensitively) in order to be ingested.
    roleArn String
    The external ID corresponding to the Role ARN.
    service String
    A value denoting which cloud service this service integrates with.
    serviceRefreshRateInMinutes Number
    How often, in minutes, to refresh the service.
    volumeSelectionTags Map<String>
    A string->string map of allow list of volume tag-value pairs (in AWS). If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested. Multiple entries are OR'ed.

    Import

    CloudWatch Cloud Integrations can be imported by using the id, e.g.:

    $ pulumi import wavefront:index/cloudIntegrationCloudwatch:CloudIntegrationCloudwatch cloudwatch a411c16b-3cf7-4f03-bf11-8ca05aab898d
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Wavefront vmware/terraform-provider-wavefront
    License
    Notes
    This Pulumi package is based on the wavefront Terraform Provider.
    wavefront logo
    wavefront 5.1.0 published on Wednesday, Jan 21, 2026 by vmware
      Meet Neo: Your AI Platform Teammate