Interface CfnOrganizationTelemetryRule.TelemetryRuleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnOrganizationTelemetryRule.TelemetryRuleProperty.Jsii$Proxy
Enclosing class:
CfnOrganizationTelemetryRule

@Stability(Stable) public static interface CfnOrganizationTelemetryRule.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())
         .scope("scope")
         .selectionCriteria("selectionCriteria")
         .build();
 

See Also: