Interface PushNotificationConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PushNotificationConfiguration.Builder,PushNotificationConfiguration>,SdkBuilder<PushNotificationConfiguration.Builder,PushNotificationConfiguration>,SdkPojo
- Enclosing class:
- PushNotificationConfiguration
public static interface PushNotificationConfiguration.Builder extends SdkPojo, CopyableBuilder<PushNotificationConfiguration.Builder,PushNotificationConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PushNotificationConfiguration.Builderbody(String body)The body of the push notification.PushNotificationConfiguration.Buildertitle(String title)The title of the push notification.PushNotificationConfiguration.Buildertype(String type)Enum value that indicates the type of the push notification for a message.PushNotificationConfiguration.Buildertype(PushNotificationType type)Enum value that indicates the type of the push notification for a message.-
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
-
title
PushNotificationConfiguration.Builder title(String title)
The title of the push notification.
- Parameters:
title- The title of the push notification.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
body
PushNotificationConfiguration.Builder body(String body)
The body of the push notification.
- Parameters:
body- The body of the push notification.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
PushNotificationConfiguration.Builder type(String type)
Enum value that indicates the type of the push notification for a message.
DEFAULT: Normal mobile push notification.VOIP: VOIP mobile push notification.- Parameters:
type- Enum value that indicates the type of the push notification for a message.DEFAULT: Normal mobile push notification.VOIP: VOIP mobile push notification.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PushNotificationType,PushNotificationType
-
type
PushNotificationConfiguration.Builder type(PushNotificationType type)
Enum value that indicates the type of the push notification for a message.
DEFAULT: Normal mobile push notification.VOIP: VOIP mobile push notification.- Parameters:
type- Enum value that indicates the type of the push notification for a message.DEFAULT: Normal mobile push notification.VOIP: VOIP mobile push notification.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PushNotificationType,PushNotificationType
-
-