interface CfnOrganizationTelemetryRuleProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnOrganizationTelemetryRuleProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnOrganizationTelemetryRuleProps |
Java | software.amazon.awscdk.services.observabilityadmin.CfnOrganizationTelemetryRuleProps |
Python | aws_cdk.aws_observabilityadmin.CfnOrganizationTelemetryRuleProps |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnOrganizationTelemetryRuleProps |
Properties for defining a CfnOrganizationTelemetryRule.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_observabilityadmin as observabilityadmin } from 'aws-cdk-lib';
const cfnOrganizationTelemetryRuleProps: observabilityadmin.CfnOrganizationTelemetryRuleProps = {
rule: {
resourceType: 'resourceType',
telemetryType: 'telemetryType',
// the properties below are optional
destinationConfiguration: {
destinationPattern: 'destinationPattern',
destinationType: 'destinationType',
retentionInDays: 123,
vpcFlowLogParameters: {
logFormat: 'logFormat',
maxAggregationInterval: 123,
trafficType: 'trafficType',
},
},
scope: 'scope',
selectionCriteria: 'selectionCriteria',
},
ruleName: 'ruleName',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| rule | IResolvable | Telemetry | The name of the organization telemetry rule. |
| rule | string | The name of the organization centralization rule. |
| tags? | Cfn[] | Lists all tags attached to the specified telemetry rule resource. |
rule
Type:
IResolvable | Telemetry
The name of the organization telemetry rule.
ruleName
Type:
string
The name of the organization centralization rule.
tags?
Type:
Cfn[]
(optional)
Lists all tags attached to the specified telemetry rule resource.

.NET
Go
Java
Python
TypeScript