Interface CfnOrganizationTelemetryRulePropsMixin.CloudtrailParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOrganizationTelemetryRulePropsMixin.CloudtrailParametersProperty.Jsii$Proxy
- Enclosing class:
CfnOrganizationTelemetryRulePropsMixin
@Stability(Stable)
public static interface CfnOrganizationTelemetryRulePropsMixin.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.cfnpropertymixins.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()))
.name("name")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnOrganizationTelemetryRulePropsMixin.CloudtrailParametersProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdvancedEventSelectors
The advanced event selectors to use for filtering AWS CloudTrail events.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnOrganizationTelemetryRulePropsMixin.AdvancedEventSelectorProperty>- See Also:
-
builder
@Stability(Stable) static CfnOrganizationTelemetryRulePropsMixin.CloudtrailParametersProperty.Builder builder()
-