Interface PutEventConfigurationResponse.Builder
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CloudTrailResponse.Builder
,CopyableBuilder<PutEventConfigurationResponse.Builder,
,PutEventConfigurationResponse> SdkBuilder<PutEventConfigurationResponse.Builder,
,PutEventConfigurationResponse> SdkPojo
,SdkResponse.Builder
- Enclosing class:
PutEventConfigurationResponse
@Mutable
@NotThreadSafe
public static interface PutEventConfigurationResponse.Builder
extends CloudTrailResponse.Builder, SdkPojo, CopyableBuilder<PutEventConfigurationResponse.Builder,PutEventConfigurationResponse>
-
Method Summary
Modifier and TypeMethodDescriptioncontextKeySelectors
(Collection<ContextKeySelector> contextKeySelectors) The list of context key selectors that are configured for the event data store.contextKeySelectors
(Consumer<ContextKeySelector.Builder>... contextKeySelectors) The list of context key selectors that are configured for the event data store.contextKeySelectors
(ContextKeySelector... contextKeySelectors) The list of context key selectors that are configured for the event data store.eventDataStoreArn
(String eventDataStoreArn) The Amazon Resource Name (ARN) or ID suffix of the ARN of the event data store for which the event configuration settings were updated.maxEventSize
(String maxEventSize) The maximum allowed size for events stored in the specified event data store.maxEventSize
(MaxEventSize maxEventSize) The maximum allowed size for events stored in the specified event data store.Methods inherited from interface software.amazon.awssdk.services.cloudtrail.model.CloudTrailResponse.Builder
build, responseMetadata, responseMetadata
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, sdkFieldNameToField, sdkFields
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Method Details
-
eventDataStoreArn
The Amazon Resource Name (ARN) or ID suffix of the ARN of the event data store for which the event configuration settings were updated.
- Parameters:
eventDataStoreArn
- The Amazon Resource Name (ARN) or ID suffix of the ARN of the event data store for which the event configuration settings were updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxEventSize
The maximum allowed size for events stored in the specified event data store.
- Parameters:
maxEventSize
- The maximum allowed size for events stored in the specified event data store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
maxEventSize
The maximum allowed size for events stored in the specified event data store.
- Parameters:
maxEventSize
- The maximum allowed size for events stored in the specified event data store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
contextKeySelectors
PutEventConfigurationResponse.Builder contextKeySelectors(Collection<ContextKeySelector> contextKeySelectors) The list of context key selectors that are configured for the event data store.
- Parameters:
contextKeySelectors
- The list of context key selectors that are configured for the event data store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contextKeySelectors
PutEventConfigurationResponse.Builder contextKeySelectors(ContextKeySelector... contextKeySelectors) The list of context key selectors that are configured for the event data store.
- Parameters:
contextKeySelectors
- The list of context key selectors that are configured for the event data store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contextKeySelectors
PutEventConfigurationResponse.Builder contextKeySelectors(Consumer<ContextKeySelector.Builder>... contextKeySelectors) The list of context key selectors that are configured for the event data store.
This is a convenience method that creates an instance of theContextKeySelector.Builder
avoiding the need to create one manually viaContextKeySelector.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocontextKeySelectors(List<ContextKeySelector>)
.- Parameters:
contextKeySelectors
- a consumer that will call methods onContextKeySelector.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-