Interface EventDataStore.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EventDataStore.Builder,EventDataStore>,SdkBuilder<EventDataStore.Builder,EventDataStore>,SdkPojo
- Enclosing class:
- EventDataStore
public static interface EventDataStore.Builder extends SdkPojo, CopyableBuilder<EventDataStore.Builder,EventDataStore>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description EventDataStore.BuilderadvancedEventSelectors(Collection<AdvancedEventSelector> advancedEventSelectors)Deprecated.AdvancedEventSelectors is no longer returned by ListEventDataStoresEventDataStore.BuilderadvancedEventSelectors(Consumer<AdvancedEventSelector.Builder>... advancedEventSelectors)Deprecated.AdvancedEventSelectors is no longer returned by ListEventDataStoresEventDataStore.BuilderadvancedEventSelectors(AdvancedEventSelector... advancedEventSelectors)Deprecated.AdvancedEventSelectors is no longer returned by ListEventDataStoresEventDataStore.BuildercreatedTimestamp(Instant createdTimestamp)Deprecated.CreatedTimestamp is no longer returned by ListEventDataStoresEventDataStore.BuildereventDataStoreArn(String eventDataStoreArn)The ARN of the event data store.EventDataStore.BuildermultiRegionEnabled(Boolean multiRegionEnabled)Deprecated.MultiRegionEnabled is no longer returned by ListEventDataStoresEventDataStore.Buildername(String name)The name of the event data store.EventDataStore.BuilderorganizationEnabled(Boolean organizationEnabled)Deprecated.OrganizationEnabled is no longer returned by ListEventDataStoresEventDataStore.BuilderretentionPeriod(Integer retentionPeriod)Deprecated.RetentionPeriod is no longer returned by ListEventDataStoresEventDataStore.Builderstatus(String status)Deprecated.Status is no longer returned by ListEventDataStoresEventDataStore.Builderstatus(EventDataStoreStatus status)Deprecated.Status is no longer returned by ListEventDataStoresEventDataStore.BuilderterminationProtectionEnabled(Boolean terminationProtectionEnabled)Deprecated.TerminationProtectionEnabled is no longer returned by ListEventDataStoresEventDataStore.BuilderupdatedTimestamp(Instant updatedTimestamp)Deprecated.UpdatedTimestamp is no longer returned by ListEventDataStores-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
eventDataStoreArn
EventDataStore.Builder eventDataStoreArn(String eventDataStoreArn)
The ARN of the event data store.
- Parameters:
eventDataStoreArn- The ARN of the event data store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
EventDataStore.Builder name(String name)
The name of the event data store.
- Parameters:
name- The name of the event data store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
terminationProtectionEnabled
@Deprecated EventDataStore.Builder terminationProtectionEnabled(Boolean terminationProtectionEnabled)
Deprecated.TerminationProtectionEnabled is no longer returned by ListEventDataStoresIndicates whether the event data store is protected from termination.
- Parameters:
terminationProtectionEnabled- Indicates whether the event data store is protected from termination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
@Deprecated EventDataStore.Builder status(String status)
Deprecated.Status is no longer returned by ListEventDataStoresThe status of an event data store.
- Parameters:
status- The status of an event data store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EventDataStoreStatus,EventDataStoreStatus
-
status
@Deprecated EventDataStore.Builder status(EventDataStoreStatus status)
Deprecated.Status is no longer returned by ListEventDataStoresThe status of an event data store.
- Parameters:
status- The status of an event data store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EventDataStoreStatus,EventDataStoreStatus
-
advancedEventSelectors
@Deprecated EventDataStore.Builder advancedEventSelectors(Collection<AdvancedEventSelector> advancedEventSelectors)
Deprecated.AdvancedEventSelectors is no longer returned by ListEventDataStoresThe advanced event selectors that were used to select events for the data store.
- Parameters:
advancedEventSelectors- The advanced event selectors that were used to select events for the data store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
advancedEventSelectors
@Deprecated EventDataStore.Builder advancedEventSelectors(AdvancedEventSelector... advancedEventSelectors)
Deprecated.AdvancedEventSelectors is no longer returned by ListEventDataStoresThe advanced event selectors that were used to select events for the data store.
- Parameters:
advancedEventSelectors- The advanced event selectors that were used to select events for the data store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
advancedEventSelectors
@Deprecated EventDataStore.Builder advancedEventSelectors(Consumer<AdvancedEventSelector.Builder>... advancedEventSelectors)
Deprecated.AdvancedEventSelectors is no longer returned by ListEventDataStoresThe advanced event selectors that were used to select events for the data store.
This is a convenience method that creates an instance of theAdvancedEventSelector.Builderavoiding the need to create one manually viaAdvancedEventSelector.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#advancedEventSelectors(List.) - Parameters:
advancedEventSelectors- a consumer that will call methods onAdvancedEventSelector.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#advancedEventSelectors(java.util.Collection)
-
multiRegionEnabled
@Deprecated EventDataStore.Builder multiRegionEnabled(Boolean multiRegionEnabled)
Deprecated.MultiRegionEnabled is no longer returned by ListEventDataStoresIndicates whether the event data store includes events from all Regions, or only from the Region in which it was created.
- Parameters:
multiRegionEnabled- Indicates whether the event data store includes events from all Regions, or only from the Region in which it was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
organizationEnabled
@Deprecated EventDataStore.Builder organizationEnabled(Boolean organizationEnabled)
Deprecated.OrganizationEnabled is no longer returned by ListEventDataStoresIndicates that an event data store is collecting logged events for an organization.
- Parameters:
organizationEnabled- Indicates that an event data store is collecting logged events for an organization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
retentionPeriod
@Deprecated EventDataStore.Builder retentionPeriod(Integer retentionPeriod)
Deprecated.RetentionPeriod is no longer returned by ListEventDataStoresThe retention period, in days.
- Parameters:
retentionPeriod- The retention period, in days.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdTimestamp
@Deprecated EventDataStore.Builder createdTimestamp(Instant createdTimestamp)
Deprecated.CreatedTimestamp is no longer returned by ListEventDataStoresThe timestamp of the event data store's creation.
- Parameters:
createdTimestamp- The timestamp of the event data store's creation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedTimestamp
@Deprecated EventDataStore.Builder updatedTimestamp(Instant updatedTimestamp)
Deprecated.UpdatedTimestamp is no longer returned by ListEventDataStoresThe timestamp showing when an event data store was updated, if applicable.
UpdatedTimestampis always either the same or newer than the time shown inCreatedTimestamp.- Parameters:
updatedTimestamp- The timestamp showing when an event data store was updated, if applicable.UpdatedTimestampis always either the same or newer than the time shown inCreatedTimestamp.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-