@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.183Z") @Stability(value=Stable) public interface CfnEventDataStoreProps extends software.amazon.jsii.JsiiSerializable
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.cloudtrail.*;
CfnEventDataStoreProps cfnEventDataStoreProps = CfnEventDataStoreProps.builder()
.advancedEventSelectors(List.of(AdvancedEventSelectorProperty.builder()
.fieldSelectors(List.of(AdvancedFieldSelectorProperty.builder()
.field("field")
// the properties below are optional
.endsWith(List.of("endsWith"))
.equalTo(List.of("equalTo"))
.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()))
.multiRegionEnabled(false)
.name("name")
.organizationEnabled(false)
.retentionPeriod(123)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.terminationProtectionEnabled(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEventDataStoreProps.Builder
A builder for
CfnEventDataStoreProps |
static class |
CfnEventDataStoreProps.Jsii$Proxy
An implementation for
CfnEventDataStoreProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnEventDataStoreProps.Builder |
builder() |
default Object |
getAdvancedEventSelectors()
`AWS::CloudTrail::EventDataStore.AdvancedEventSelectors`.
|
default Object |
getMultiRegionEnabled()
`AWS::CloudTrail::EventDataStore.MultiRegionEnabled`.
|
default String |
getName()
`AWS::CloudTrail::EventDataStore.Name`.
|
default Object |
getOrganizationEnabled()
`AWS::CloudTrail::EventDataStore.OrganizationEnabled`.
|
default Number |
getRetentionPeriod()
`AWS::CloudTrail::EventDataStore.RetentionPeriod`.
|
default List<CfnTag> |
getTags()
`AWS::CloudTrail::EventDataStore.Tags`.
|
default Object |
getTerminationProtectionEnabled()
`AWS::CloudTrail::EventDataStore.TerminationProtectionEnabled`.
|
@Stability(value=Stable) @Nullable default Object getAdvancedEventSelectors()
@Stability(value=Stable) @Nullable default Object getMultiRegionEnabled()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getOrganizationEnabled()
@Stability(value=Stable) @Nullable default Number getRetentionPeriod()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default Object getTerminationProtectionEnabled()
@Stability(value=Stable) static CfnEventDataStoreProps.Builder builder()
CfnEventDataStoreProps.Builder of CfnEventDataStorePropsCopyright © 2022. All rights reserved.