Interface Subscriber.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Subscriber.Builder,Subscriber>,SdkBuilder<Subscriber.Builder,Subscriber>,SdkPojo
- Enclosing class:
- Subscriber
public static interface Subscriber.Builder extends SdkPojo, CopyableBuilder<Subscriber.Builder,Subscriber>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Subscriber.Builderaddress(String address)The email address or SNS Amazon Resource Name (ARN).Subscriber.Builderstatus(String status)Indicates if the subscriber accepts the notifications.Subscriber.Builderstatus(SubscriberStatus status)Indicates if the subscriber accepts the notifications.Subscriber.Buildertype(String type)The notification delivery channel.Subscriber.Buildertype(SubscriberType type)The notification delivery channel.-
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
-
address
Subscriber.Builder address(String address)
The email address or SNS Amazon Resource Name (ARN). This depends on the
Type.- Parameters:
address- The email address or SNS Amazon Resource Name (ARN). This depends on theType.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
Subscriber.Builder type(String type)
The notification delivery channel.
- Parameters:
type- The notification delivery channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SubscriberType,SubscriberType
-
type
Subscriber.Builder type(SubscriberType type)
The notification delivery channel.
- Parameters:
type- The notification delivery channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SubscriberType,SubscriberType
-
status
Subscriber.Builder status(String status)
Indicates if the subscriber accepts the notifications.
- Parameters:
status- Indicates if the subscriber accepts the notifications.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SubscriberStatus,SubscriberStatus
-
status
Subscriber.Builder status(SubscriberStatus status)
Indicates if the subscriber accepts the notifications.
- Parameters:
status- Indicates if the subscriber accepts the notifications.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SubscriberStatus,SubscriberStatus
-
-