interface CfnTelemetryRuleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ObservabilityAdmin.Mixins.CfnTelemetryRuleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsobservabilityadmin/mixins#CfnTelemetryRuleMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.CfnTelemetryRuleMixinProps |
Python | aws_cdk.mixins_preview.aws_observabilityadmin.mixins.CfnTelemetryRuleMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_observabilityadmin » mixins » CfnTelemetryRuleMixinProps |
Properties for CfnTelemetryRulePropsMixin.
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 cfnTelemetryRuleMixinProps: observabilityadmin_mixins.CfnTelemetryRuleMixinProps = {
rule: {
destinationConfiguration: {
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',
},
logDeliveryParameters: {
logTypes: ['logTypes'],
},
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',
}],
},
},
resourceType: 'resourceType',
selectionCriteria: 'selectionCriteria',
telemetrySourceTypes: ['telemetrySourceTypes'],
telemetryType: 'telemetryType',
},
ruleName: 'ruleName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| rule? | IResolvable | Telemetry | Retrieves the details of a specific telemetry rule in your account. |
| rule | string | The name of the telemetry rule. |
| tags? | Cfn[] | Lists all tags attached to the specified resource. |
rule?
Type:
IResolvable | Telemetry
(optional)
Retrieves the details of a specific telemetry rule in your account.
ruleName?
Type:
string
(optional)
The name of the telemetry rule.
tags?
Type:
Cfn[]
(optional)
Lists all tags attached to the specified resource.
Supports telemetry rule resources and telemetry pipeline resources.

.NET
Go
Java
Python
TypeScript