published on Tuesday, May 26, 2026 by Pulumi
published on Tuesday, May 26, 2026 by Pulumi
Manages an AWS CloudWatch Observability Admin Telemetry Rule for Organization.
NOTE: Before using this resource, telemetry evaluation for organization must be enabled for your AWS organization. You can use the
aws.observabilityadmin.TelemetryEvaluationForOrganizationresource to enable it.
NOTE: This resource can only be used in the organization management account.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.observabilityadmin.TelemetryEvaluationForOrganization("example", {});
const exampleTelemetryRuleForOrganization = new aws.observabilityadmin.TelemetryRuleForOrganization("example", {
ruleName: "example-org-telemetry-rule",
rule: {
telemetryType: "Logs",
resourceType: "AWS::EC2::VPC",
},
}, {
dependsOn: [example],
});
import pulumi
import pulumi_aws as aws
example = aws.observabilityadmin.TelemetryEvaluationForOrganization("example")
example_telemetry_rule_for_organization = aws.observabilityadmin.TelemetryRuleForOrganization("example",
rule_name="example-org-telemetry-rule",
rule={
"telemetry_type": "Logs",
"resource_type": "AWS::EC2::VPC",
},
opts = pulumi.ResourceOptions(depends_on=[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 {
example, err := observabilityadmin.NewTelemetryEvaluationForOrganization(ctx, "example", nil)
if err != nil {
return err
}
_, err = observabilityadmin.NewTelemetryRuleForOrganization(ctx, "example", &observabilityadmin.TelemetryRuleForOrganizationArgs{
RuleName: pulumi.String("example-org-telemetry-rule"),
Rule: &observabilityadmin.TelemetryRuleForOrganizationRuleArgs{
TelemetryType: pulumi.String("Logs"),
ResourceType: pulumi.String("AWS::EC2::VPC"),
},
}, pulumi.DependsOn([]pulumi.Resource{
example,
}))
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");
var exampleTelemetryRuleForOrganization = new Aws.Observabilityadmin.TelemetryRuleForOrganization("example", new()
{
RuleName = "example-org-telemetry-rule",
Rule = new Aws.Observabilityadmin.Inputs.TelemetryRuleForOrganizationRuleArgs
{
TelemetryType = "Logs",
ResourceType = "AWS::EC2::VPC",
},
}, new CustomResourceOptions
{
DependsOn =
{
example,
},
});
});
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.TelemetryRuleForOrganization;
import com.pulumi.aws.observabilityadmin.TelemetryRuleForOrganizationArgs;
import com.pulumi.aws.observabilityadmin.inputs.TelemetryRuleForOrganizationRuleArgs;
import com.pulumi.resources.CustomResourceOptions;
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");
var exampleTelemetryRuleForOrganization = new TelemetryRuleForOrganization("exampleTelemetryRuleForOrganization", TelemetryRuleForOrganizationArgs.builder()
.ruleName("example-org-telemetry-rule")
.rule(TelemetryRuleForOrganizationRuleArgs.builder()
.telemetryType("Logs")
.resourceType("AWS::EC2::VPC")
.build())
.build(), CustomResourceOptions.builder()
.dependsOn(example)
.build());
}
}
resources:
example:
type: aws:observabilityadmin:TelemetryEvaluationForOrganization
exampleTelemetryRuleForOrganization:
type: aws:observabilityadmin:TelemetryRuleForOrganization
name: example
properties:
ruleName: example-org-telemetry-rule
rule:
telemetryType: Logs
resourceType: AWS::EC2::VPC
options:
dependsOn:
- ${example}
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_observabilityadmin_telemetryevaluationfororganization" "example" {
}
resource "aws_observabilityadmin_telemetryrulefororganization" "example" {
depends_on = [aws_observabilityadmin_telemetryevaluationfororganization.example]
rule_name = "example-org-telemetry-rule"
rule = {
telemetry_type = "Logs"
resource_type = "AWS::EC2::VPC"
}
}
With Tags
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.observabilityadmin.TelemetryEvaluationForOrganization("example", {});
const exampleTelemetryRuleForOrganization = new aws.observabilityadmin.TelemetryRuleForOrganization("example", {
ruleName: "vpc-logs-org-rule",
rule: {
telemetryType: "Logs",
resourceType: "AWS::EC2::VPC",
},
tags: {
Environment: "production",
Purpose: "organization-monitoring",
},
}, {
dependsOn: [example],
});
import pulumi
import pulumi_aws as aws
example = aws.observabilityadmin.TelemetryEvaluationForOrganization("example")
example_telemetry_rule_for_organization = aws.observabilityadmin.TelemetryRuleForOrganization("example",
rule_name="vpc-logs-org-rule",
rule={
"telemetry_type": "Logs",
"resource_type": "AWS::EC2::VPC",
},
tags={
"Environment": "production",
"Purpose": "organization-monitoring",
},
opts = pulumi.ResourceOptions(depends_on=[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 {
example, err := observabilityadmin.NewTelemetryEvaluationForOrganization(ctx, "example", nil)
if err != nil {
return err
}
_, err = observabilityadmin.NewTelemetryRuleForOrganization(ctx, "example", &observabilityadmin.TelemetryRuleForOrganizationArgs{
RuleName: pulumi.String("vpc-logs-org-rule"),
Rule: &observabilityadmin.TelemetryRuleForOrganizationRuleArgs{
TelemetryType: pulumi.String("Logs"),
ResourceType: pulumi.String("AWS::EC2::VPC"),
},
Tags: pulumi.StringMap{
"Environment": pulumi.String("production"),
"Purpose": pulumi.String("organization-monitoring"),
},
}, pulumi.DependsOn([]pulumi.Resource{
example,
}))
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");
var exampleTelemetryRuleForOrganization = new Aws.Observabilityadmin.TelemetryRuleForOrganization("example", new()
{
RuleName = "vpc-logs-org-rule",
Rule = new Aws.Observabilityadmin.Inputs.TelemetryRuleForOrganizationRuleArgs
{
TelemetryType = "Logs",
ResourceType = "AWS::EC2::VPC",
},
Tags =
{
{ "Environment", "production" },
{ "Purpose", "organization-monitoring" },
},
}, new CustomResourceOptions
{
DependsOn =
{
example,
},
});
});
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.TelemetryRuleForOrganization;
import com.pulumi.aws.observabilityadmin.TelemetryRuleForOrganizationArgs;
import com.pulumi.aws.observabilityadmin.inputs.TelemetryRuleForOrganizationRuleArgs;
import com.pulumi.resources.CustomResourceOptions;
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");
var exampleTelemetryRuleForOrganization = new TelemetryRuleForOrganization("exampleTelemetryRuleForOrganization", TelemetryRuleForOrganizationArgs.builder()
.ruleName("vpc-logs-org-rule")
.rule(TelemetryRuleForOrganizationRuleArgs.builder()
.telemetryType("Logs")
.resourceType("AWS::EC2::VPC")
.build())
.tags(Map.ofEntries(
Map.entry("Environment", "production"),
Map.entry("Purpose", "organization-monitoring")
))
.build(), CustomResourceOptions.builder()
.dependsOn(example)
.build());
}
}
resources:
example:
type: aws:observabilityadmin:TelemetryEvaluationForOrganization
exampleTelemetryRuleForOrganization:
type: aws:observabilityadmin:TelemetryRuleForOrganization
name: example
properties:
ruleName: vpc-logs-org-rule
rule:
telemetryType: Logs
resourceType: AWS::EC2::VPC
tags:
Environment: production
Purpose: organization-monitoring
options:
dependsOn:
- ${example}
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_observabilityadmin_telemetryevaluationfororganization" "example" {
}
resource "aws_observabilityadmin_telemetryrulefororganization" "example" {
depends_on = [aws_observabilityadmin_telemetryevaluationfororganization.example]
rule_name = "vpc-logs-org-rule"
rule = {
telemetry_type = "Logs"
resource_type = "AWS::EC2::VPC"
}
tags = {
"Environment" = "production"
"Purpose" = "organization-monitoring"
}
}
Create TelemetryRuleForOrganization Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TelemetryRuleForOrganization(name: string, args: TelemetryRuleForOrganizationArgs, opts?: CustomResourceOptions);@overload
def TelemetryRuleForOrganization(resource_name: str,
args: TelemetryRuleForOrganizationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TelemetryRuleForOrganization(resource_name: str,
opts: Optional[ResourceOptions] = None,
rule: Optional[TelemetryRuleForOrganizationRuleArgs] = None,
rule_name: Optional[str] = None,
region: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[TelemetryRuleForOrganizationTimeoutsArgs] = None)func NewTelemetryRuleForOrganization(ctx *Context, name string, args TelemetryRuleForOrganizationArgs, opts ...ResourceOption) (*TelemetryRuleForOrganization, error)public TelemetryRuleForOrganization(string name, TelemetryRuleForOrganizationArgs args, CustomResourceOptions? opts = null)
public TelemetryRuleForOrganization(String name, TelemetryRuleForOrganizationArgs args)
public TelemetryRuleForOrganization(String name, TelemetryRuleForOrganizationArgs args, CustomResourceOptions options)
type: aws:observabilityadmin:TelemetryRuleForOrganization
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "aws_observabilityadmin_telemetryrulefororganization" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args TelemetryRuleForOrganizationArgs
- 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 TelemetryRuleForOrganizationArgs
- 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 TelemetryRuleForOrganizationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TelemetryRuleForOrganizationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TelemetryRuleForOrganizationArgs
- 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 telemetryRuleForOrganizationResource = new Aws.Observabilityadmin.TelemetryRuleForOrganization("telemetryRuleForOrganizationResource", new()
{
Rule = new Aws.Observabilityadmin.Inputs.TelemetryRuleForOrganizationRuleArgs
{
TelemetryType = "string",
ResourceType = "string",
},
RuleName = "string",
Region = "string",
Tags =
{
{ "string", "string" },
},
Timeouts = new Aws.Observabilityadmin.Inputs.TelemetryRuleForOrganizationTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := observabilityadmin.NewTelemetryRuleForOrganization(ctx, "telemetryRuleForOrganizationResource", &observabilityadmin.TelemetryRuleForOrganizationArgs{
Rule: &observabilityadmin.TelemetryRuleForOrganizationRuleArgs{
TelemetryType: pulumi.String("string"),
ResourceType: pulumi.String("string"),
},
RuleName: pulumi.String("string"),
Region: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Timeouts: &observabilityadmin.TelemetryRuleForOrganizationTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
resource "aws_observabilityadmin_telemetryrulefororganization" "telemetryRuleForOrganizationResource" {
rule = {
telemetry_type = "string"
resource_type = "string"
}
rule_name = "string"
region = "string"
tags = {
"string" = "string"
}
timeouts = {
create = "string"
delete = "string"
update = "string"
}
}
var telemetryRuleForOrganizationResource = new TelemetryRuleForOrganization("telemetryRuleForOrganizationResource", TelemetryRuleForOrganizationArgs.builder()
.rule(TelemetryRuleForOrganizationRuleArgs.builder()
.telemetryType("string")
.resourceType("string")
.build())
.ruleName("string")
.region("string")
.tags(Map.of("string", "string"))
.timeouts(TelemetryRuleForOrganizationTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
telemetry_rule_for_organization_resource = aws.observabilityadmin.TelemetryRuleForOrganization("telemetryRuleForOrganizationResource",
rule={
"telemetry_type": "string",
"resource_type": "string",
},
rule_name="string",
region="string",
tags={
"string": "string",
},
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const telemetryRuleForOrganizationResource = new aws.observabilityadmin.TelemetryRuleForOrganization("telemetryRuleForOrganizationResource", {
rule: {
telemetryType: "string",
resourceType: "string",
},
ruleName: "string",
region: "string",
tags: {
string: "string",
},
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: aws:observabilityadmin:TelemetryRuleForOrganization
properties:
region: string
rule:
resourceType: string
telemetryType: string
ruleName: string
tags:
string: string
timeouts:
create: string
delete: string
update: string
TelemetryRuleForOrganization 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 TelemetryRuleForOrganization resource accepts the following input properties:
- Rule
Telemetry
Rule For Organization Rule - Configuration block for the telemetry rule. See
ruleBlock below. - Rule
Name string - Name of the telemetry rule for organization. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes.
- Region string
- AWS region. If not specified, the provider region is used.
- Dictionary<string, string>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Telemetry
Rule For Organization Timeouts
- Rule
Telemetry
Rule For Organization Rule Args - Configuration block for the telemetry rule. See
ruleBlock below. - Rule
Name string - Name of the telemetry rule for organization. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes.
- Region string
- AWS region. If not specified, the provider region is used.
- map[string]string
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Telemetry
Rule For Organization Timeouts Args
- rule object
- Configuration block for the telemetry rule. See
ruleBlock below. - rule_
name string - Name of the telemetry rule for organization. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes.
- region string
- AWS region. If not specified, the provider region is used.
- map(string)
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts object
- rule
Telemetry
Rule For Organization Rule - Configuration block for the telemetry rule. See
ruleBlock below. - rule
Name String - Name of the telemetry rule for organization. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes.
- region String
- AWS region. If not specified, the provider region is used.
- Map<String,String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Telemetry
Rule For Organization Timeouts
- rule
Telemetry
Rule For Organization Rule - Configuration block for the telemetry rule. See
ruleBlock below. - rule
Name string - Name of the telemetry rule for organization. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes.
- region string
- AWS region. If not specified, the provider region is used.
- {[key: string]: string}
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Telemetry
Rule For Organization Timeouts
- rule
Telemetry
Rule For Organization Rule Args - Configuration block for the telemetry rule. See
ruleBlock below. - rule_
name str - Name of the telemetry rule for organization. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes.
- region str
- AWS region. If not specified, the provider region is used.
- Mapping[str, str]
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Telemetry
Rule For Organization Timeouts Args
- rule Property Map
- Configuration block for the telemetry rule. See
ruleBlock below. - rule
Name String - Name of the telemetry rule for organization. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes.
- region String
- AWS region. If not specified, the provider region is used.
- Map<String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the TelemetryRuleForOrganization resource produces the following output properties:
Look up Existing TelemetryRuleForOrganization Resource
Get an existing TelemetryRuleForOrganization 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?: TelemetryRuleForOrganizationState, opts?: CustomResourceOptions): TelemetryRuleForOrganization@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
region: Optional[str] = None,
rule: Optional[TelemetryRuleForOrganizationRuleArgs] = None,
rule_arn: Optional[str] = None,
rule_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
timeouts: Optional[TelemetryRuleForOrganizationTimeoutsArgs] = None) -> TelemetryRuleForOrganizationfunc GetTelemetryRuleForOrganization(ctx *Context, name string, id IDInput, state *TelemetryRuleForOrganizationState, opts ...ResourceOption) (*TelemetryRuleForOrganization, error)public static TelemetryRuleForOrganization Get(string name, Input<string> id, TelemetryRuleForOrganizationState? state, CustomResourceOptions? opts = null)public static TelemetryRuleForOrganization get(String name, Output<String> id, TelemetryRuleForOrganizationState state, CustomResourceOptions options)resources: _: type: aws:observabilityadmin:TelemetryRuleForOrganization get: id: ${id}import {
to = aws_observabilityadmin_telemetryrulefororganization.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.
- Region string
- AWS region. If not specified, the provider region is used.
- Rule
Telemetry
Rule For Organization Rule - Configuration block for the telemetry rule. See
ruleBlock below. - Rule
Arn string - ARN of the telemetry rule for organization.
- Rule
Name string - Name of the telemetry rule for organization. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes.
- Dictionary<string, string>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - Timeouts
Telemetry
Rule For Organization Timeouts
- Region string
- AWS region. If not specified, the provider region is used.
- Rule
Telemetry
Rule For Organization Rule Args - Configuration block for the telemetry rule. See
ruleBlock below. - Rule
Arn string - ARN of the telemetry rule for organization.
- Rule
Name string - Name of the telemetry rule for organization. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes.
- map[string]string
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - Timeouts
Telemetry
Rule For Organization Timeouts Args
- region string
- AWS region. If not specified, the provider region is used.
- rule object
- Configuration block for the telemetry rule. See
ruleBlock below. - rule_
arn string - ARN of the telemetry rule for organization.
- rule_
name string - Name of the telemetry rule for organization. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes.
- map(string)
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map(string)
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts object
- region String
- AWS region. If not specified, the provider region is used.
- rule
Telemetry
Rule For Organization Rule - Configuration block for the telemetry rule. See
ruleBlock below. - rule
Arn String - ARN of the telemetry rule for organization.
- rule
Name String - Name of the telemetry rule for organization. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes.
- Map<String,String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts
Telemetry
Rule For Organization Timeouts
- region string
- AWS region. If not specified, the provider region is used.
- rule
Telemetry
Rule For Organization Rule - Configuration block for the telemetry rule. See
ruleBlock below. - rule
Arn string - ARN of the telemetry rule for organization.
- rule
Name string - Name of the telemetry rule for organization. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes.
- {[key: string]: string}
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts
Telemetry
Rule For Organization Timeouts
- region str
- AWS region. If not specified, the provider region is used.
- rule
Telemetry
Rule For Organization Rule Args - Configuration block for the telemetry rule. See
ruleBlock below. - rule_
arn str - ARN of the telemetry rule for organization.
- rule_
name str - Name of the telemetry rule for organization. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes.
- Mapping[str, str]
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts
Telemetry
Rule For Organization Timeouts Args
- region String
- AWS region. If not specified, the provider region is used.
- rule Property Map
- Configuration block for the telemetry rule. See
ruleBlock below. - rule
Arn String - ARN of the telemetry rule for organization.
- rule
Name String - Name of the telemetry rule for organization. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes.
- Map<String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block. - timeouts Property Map
Supporting Types
TelemetryRuleForOrganizationRule, TelemetryRuleForOrganizationRuleArgs
- Telemetry
Type string Type of telemetry data. Valid values:
Logs,Metrics,Traces.Note: This resource is currently in early development. Additional resource types and configuration options will be added in future releases.
- Resource
Type string - AWS resource type to apply the rule to. Currently supported:
AWS::EC2::VPCwithLogs.
- Telemetry
Type string Type of telemetry data. Valid values:
Logs,Metrics,Traces.Note: This resource is currently in early development. Additional resource types and configuration options will be added in future releases.
- Resource
Type string - AWS resource type to apply the rule to. Currently supported:
AWS::EC2::VPCwithLogs.
- telemetry_
type string Type of telemetry data. Valid values:
Logs,Metrics,Traces.Note: This resource is currently in early development. Additional resource types and configuration options will be added in future releases.
- resource_
type string - AWS resource type to apply the rule to. Currently supported:
AWS::EC2::VPCwithLogs.
- telemetry
Type String Type of telemetry data. Valid values:
Logs,Metrics,Traces.Note: This resource is currently in early development. Additional resource types and configuration options will be added in future releases.
- resource
Type String - AWS resource type to apply the rule to. Currently supported:
AWS::EC2::VPCwithLogs.
- telemetry
Type string Type of telemetry data. Valid values:
Logs,Metrics,Traces.Note: This resource is currently in early development. Additional resource types and configuration options will be added in future releases.
- resource
Type string - AWS resource type to apply the rule to. Currently supported:
AWS::EC2::VPCwithLogs.
- telemetry_
type str Type of telemetry data. Valid values:
Logs,Metrics,Traces.Note: This resource is currently in early development. Additional resource types and configuration options will be added in future releases.
- resource_
type str - AWS resource type to apply the rule to. Currently supported:
AWS::EC2::VPCwithLogs.
- telemetry
Type String Type of telemetry data. Valid values:
Logs,Metrics,Traces.Note: This resource is currently in early development. Additional resource types and configuration options will be added in future releases.
- resource
Type String - AWS resource type to apply the rule to. Currently supported:
AWS::EC2::VPCwithLogs.
TelemetryRuleForOrganizationTimeouts, TelemetryRuleForOrganizationTimeoutsArgs
- 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.
- Update 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).
- 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.
- Update 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).
- 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.
- update 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).
- 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.
- update 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).
- 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.
- update 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).
- 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.
- update 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).
- 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.
- update 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).
Import
Identity Schema
Required
ruleName(String) Name of the telemetry rule.
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 Rules for Organization using ruleName. For example:
$ pulumi import aws:observabilityadmin/telemetryRuleForOrganization:TelemetryRuleForOrganization example example-org-telemetry-rule
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 Tuesday, May 26, 2026 by Pulumi