Interface CfnTelemetryRule.CloudtrailParametersProperty

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

@Stability(Stable) public static interface CfnTelemetryRule.CloudtrailParametersProperty extends software.amazon.jsii.JsiiSerializable
Parameters specific to AWS CloudTrail telemetry configuration.

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.*;
 CloudtrailParametersProperty cloudtrailParametersProperty = CloudtrailParametersProperty.builder()
         .advancedEventSelectors(List.of(AdvancedEventSelectorProperty.builder()
                 .fieldSelectors(List.of(AdvancedFieldSelectorProperty.builder()
                         .endsWith(List.of("endsWith"))
                         .equalTo(List.of("equalTo"))
                         .field("field")
                         .notEndsWith(List.of("notEndsWith"))
                         .notEquals(List.of("notEquals"))
                         .notStartsWith(List.of("notStartsWith"))
                         .startsWith(List.of("startsWith"))
                         .build()))
                 // the properties below are optional
                 .name("name")
                 .build()))
         .build();
 

See Also: