Interface EventTriggerDimension.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<EventTriggerDimension.Builder,
,EventTriggerDimension> SdkBuilder<EventTriggerDimension.Builder,
,EventTriggerDimension> SdkPojo
- Enclosing class:
EventTriggerDimension
@Mutable
@NotThreadSafe
public static interface EventTriggerDimension.Builder
extends SdkPojo, CopyableBuilder<EventTriggerDimension.Builder,EventTriggerDimension>
-
Method Summary
Modifier and TypeMethodDescriptionobjectAttributes
(Collection<ObjectAttribute> objectAttributes) A list of object attributes to be evaluated.objectAttributes
(Consumer<ObjectAttribute.Builder>... objectAttributes) A list of object attributes to be evaluated.objectAttributes
(ObjectAttribute... objectAttributes) A list of object attributes to be evaluated.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
-
Method Details
-
objectAttributes
A list of object attributes to be evaluated.
- Parameters:
objectAttributes
- A list of object attributes to be evaluated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectAttributes
A list of object attributes to be evaluated.
- Parameters:
objectAttributes
- A list of object attributes to be evaluated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectAttributes
EventTriggerDimension.Builder objectAttributes(Consumer<ObjectAttribute.Builder>... objectAttributes) A list of object attributes to be evaluated.
This is a convenience method that creates an instance of theObjectAttribute.Builder
avoiding the need to create one manually viaObjectAttribute.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toobjectAttributes(List<ObjectAttribute>)
.- Parameters:
objectAttributes
- a consumer that will call methods onObjectAttribute.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-