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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnOrganizationTelemetryRule.TelemetryRuleProperty
static final class
An implementation forCfnOrganizationTelemetryRule.TelemetryRuleProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The destination configuration for telemetry data.Resource Type associated with the Organization Telemetry Rule.default String
getScope()
Selection Criteria on scope level for rule application.default String
Selection Criteria on resource level for rule application.Telemetry Type associated with the Organization Telemetry Rule.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResourceType
Resource Type associated with the Organization Telemetry Rule.- See Also:
-
getTelemetryType
Telemetry Type associated with the Organization Telemetry Rule.- See Also:
-
getDestinationConfiguration
The destination configuration for telemetry data.- See Also:
-
getScope
Selection Criteria on scope level for rule application.- See Also:
-
getSelectionCriteria
Selection Criteria on resource level for rule application.- See Also:
-
builder
-