interface TelemetryDestinationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ObservabilityAdmin.Mixins.CfnOrganizationTelemetryRulePropsMixin.TelemetryDestinationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsobservabilityadmin/mixins#CfnOrganizationTelemetryRulePropsMixin_TelemetryDestinationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.CfnOrganizationTelemetryRulePropsMixin.TelemetryDestinationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_observabilityadmin.mixins.CfnOrganizationTelemetryRulePropsMixin.TelemetryDestinationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_observabilityadmin » mixins » CfnOrganizationTelemetryRulePropsMixin » TelemetryDestinationConfigurationProperty |
Configuration specifying where and how telemetry data should be delivered for AWS resources.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as observabilityadmin_mixins } from '@aws-cdk/mixins-preview/aws-observabilityadmin';
const telemetryDestinationConfigurationProperty: observabilityadmin_mixins.CfnOrganizationTelemetryRulePropsMixin.TelemetryDestinationConfigurationProperty = {
cloudtrailParameters: {
advancedEventSelectors: [{
fieldSelectors: [{
endsWith: ['endsWith'],
equalTo: ['equalTo'],
field: 'field',
notEndsWith: ['notEndsWith'],
notEquals: ['notEquals'],
notStartsWith: ['notStartsWith'],
startsWith: ['startsWith'],
}],
name: 'name',
}],
},
destinationPattern: 'destinationPattern',
destinationType: 'destinationType',
elbLoadBalancerLoggingParameters: {
fieldDelimiter: 'fieldDelimiter',
outputFormat: 'outputFormat',
},
retentionInDays: 123,
vpcFlowLogParameters: {
logFormat: 'logFormat',
maxAggregationInterval: 123,
trafficType: 'trafficType',
},
wafLoggingParameters: {
loggingFilter: {
defaultBehavior: 'defaultBehavior',
filters: [{
behavior: 'behavior',
conditions: [{
actionCondition: {
action: 'action',
},
labelNameCondition: {
labelName: 'labelName',
},
}],
requirement: 'requirement',
}],
},
logType: 'logType',
redactedFields: [{
method: 'method',
queryString: 'queryString',
singleHeader: {
name: 'name',
},
uriPath: 'uriPath',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cloudtrail | IResolvable | Cloudtrail | Configuration parameters specific to AWS CloudTrail when CloudTrail is the source type. |
| destination | string | The pattern used to generate the destination path or name, supporting macros like |
| destination | string | The type of destination for the telemetry data (e.g., "Amazon CloudWatch Logs", "S3"). |
| elb | IResolvable | ELBLoad | Configuration parameters specific to ELB load balancer logging when ELB is the resource type. |
| retention | number | The number of days to retain the telemetry data in the destination. |
| vpc | IResolvable | VPCFlow | Configuration parameters specific to VPC Flow Logs when VPC is the resource type. |
| waf | IResolvable | WAFLogging | Configuration parameters specific to WAF logging when WAF is the resource type. |
cloudtrailParameters?
Type:
IResolvable | Cloudtrail
(optional)
Configuration parameters specific to AWS CloudTrail when CloudTrail is the source type.
destinationPattern?
Type:
string
(optional)
The pattern used to generate the destination path or name, supporting macros like <resourceId> and <accountId>.
destinationType?
Type:
string
(optional)
The type of destination for the telemetry data (e.g., "Amazon CloudWatch Logs", "S3").
elbLoadBalancerLoggingParameters?
Type:
IResolvable | ELBLoad
(optional)
Configuration parameters specific to ELB load balancer logging when ELB is the resource type.
retentionInDays?
Type:
number
(optional)
The number of days to retain the telemetry data in the destination.
vpcFlowLogParameters?
Type:
IResolvable | VPCFlow
(optional)
Configuration parameters specific to VPC Flow Logs when VPC is the resource type.
wafLoggingParameters?
Type:
IResolvable | WAFLogging
(optional)
Configuration parameters specific to WAF logging when WAF is the resource type.

.NET
Go
Java
Python
TypeScript