Interface EventSubscription.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EventSubscription.Builder,EventSubscription>,SdkBuilder<EventSubscription.Builder,EventSubscription>,SdkPojo
- Enclosing class:
- EventSubscription
public static interface EventSubscription.Builder extends SdkPojo, CopyableBuilder<EventSubscription.Builder,EventSubscription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventSubscription.Builderevent(String event)The event for which Amazon Simple Notification Service (SNS) notifications are sent.EventSubscription.Builderevent(InspectorEvent event)The event for which Amazon Simple Notification Service (SNS) notifications are sent.EventSubscription.BuildersubscribedAt(Instant subscribedAt)The time at which SubscribeToEvent is called.-
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
-
event
EventSubscription.Builder event(String event)
The event for which Amazon Simple Notification Service (SNS) notifications are sent.
- Parameters:
event- The event for which Amazon Simple Notification Service (SNS) notifications are sent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InspectorEvent,InspectorEvent
-
event
EventSubscription.Builder event(InspectorEvent event)
The event for which Amazon Simple Notification Service (SNS) notifications are sent.
- Parameters:
event- The event for which Amazon Simple Notification Service (SNS) notifications are sent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InspectorEvent,InspectorEvent
-
subscribedAt
EventSubscription.Builder subscribedAt(Instant subscribedAt)
The time at which SubscribeToEvent is called.
- Parameters:
subscribedAt- The time at which SubscribeToEvent is called.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-