Interface CfnTelemetryRule.TelemetryRuleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTelemetryRule.TelemetryRuleProperty.Jsii$Proxy
- Enclosing class:
CfnTelemetryRule
@Stability(Stable)
public static interface CfnTelemetryRule.TelemetryRuleProperty
extends software.amazon.jsii.JsiiSerializable
The telemetry rule.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.observabilityadmin.*; TelemetryRuleProperty telemetryRuleProperty = TelemetryRuleProperty.builder() .resourceType("resourceType") .telemetryType("telemetryType") // the properties below are optional .destinationConfiguration(TelemetryDestinationConfigurationProperty.builder() .destinationPattern("destinationPattern") .destinationType("destinationType") .retentionInDays(123) .vpcFlowLogParameters(VPCFlowLogParametersProperty.builder() .logFormat("logFormat") .maxAggregationInterval(123) .trafficType("trafficType") .build()) .build()) .selectionCriteria("selectionCriteria") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTelemetryRule.TelemetryRuleProperty
static final class
An implementation forCfnTelemetryRule.TelemetryRuleProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResourceType
Resource Type associated with the Telemetry Rule.- See Also:
-
getTelemetryType
Telemetry Type associated with the Telemetry Rule.- See Also:
-
getDestinationConfiguration
The destination configuration for telemetry data.- See Also:
-
getSelectionCriteria
Selection Criteria on resource level for rule application.- See Also:
-
builder
-