Interface AwsS3BucketNotificationConfigurationS3KeyFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AwsS3BucketNotificationConfigurationS3KeyFilter.Builder,AwsS3BucketNotificationConfigurationS3KeyFilter>,SdkBuilder<AwsS3BucketNotificationConfigurationS3KeyFilter.Builder,AwsS3BucketNotificationConfigurationS3KeyFilter>,SdkPojo
- Enclosing class:
- AwsS3BucketNotificationConfigurationS3KeyFilter
public static interface AwsS3BucketNotificationConfigurationS3KeyFilter.Builder extends SdkPojo, CopyableBuilder<AwsS3BucketNotificationConfigurationS3KeyFilter.Builder,AwsS3BucketNotificationConfigurationS3KeyFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AwsS3BucketNotificationConfigurationS3KeyFilter.BuilderfilterRules(Collection<AwsS3BucketNotificationConfigurationS3KeyFilterRule> filterRules)The filter rules for the filter.AwsS3BucketNotificationConfigurationS3KeyFilter.BuilderfilterRules(Consumer<AwsS3BucketNotificationConfigurationS3KeyFilterRule.Builder>... filterRules)The filter rules for the filter.AwsS3BucketNotificationConfigurationS3KeyFilter.BuilderfilterRules(AwsS3BucketNotificationConfigurationS3KeyFilterRule... filterRules)The filter rules for the filter.-
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
-
filterRules
AwsS3BucketNotificationConfigurationS3KeyFilter.Builder filterRules(Collection<AwsS3BucketNotificationConfigurationS3KeyFilterRule> filterRules)
The filter rules for the filter.
- Parameters:
filterRules- The filter rules for the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filterRules
AwsS3BucketNotificationConfigurationS3KeyFilter.Builder filterRules(AwsS3BucketNotificationConfigurationS3KeyFilterRule... filterRules)
The filter rules for the filter.
- Parameters:
filterRules- The filter rules for the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filterRules
AwsS3BucketNotificationConfigurationS3KeyFilter.Builder filterRules(Consumer<AwsS3BucketNotificationConfigurationS3KeyFilterRule.Builder>... filterRules)
The filter rules for the filter.
This is a convenience method that creates an instance of theAwsS3BucketNotificationConfigurationS3KeyFilterRule.Builderavoiding the need to create one manually viaAwsS3BucketNotificationConfigurationS3KeyFilterRule.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#filterRules(List.) - Parameters:
filterRules- a consumer that will call methods onAwsS3BucketNotificationConfigurationS3KeyFilterRule.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#filterRules(java.util.Collection)
-
-