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 address that Amazon Web Services sends budget notifications to, either an SNS topic or an email.Subscriber.BuildersubscriptionType(String subscriptionType)The type of notification that Amazon Web Services sends to a subscriber.Subscriber.BuildersubscriptionType(SubscriptionType subscriptionType)The type of notification that Amazon Web Services sends to a subscriber.-
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 Detail
-
subscriptionType
Subscriber.Builder subscriptionType(String subscriptionType)
The type of notification that Amazon Web Services sends to a subscriber.
- Parameters:
subscriptionType- The type of notification that Amazon Web Services sends to a subscriber.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SubscriptionType,SubscriptionType
-
subscriptionType
Subscriber.Builder subscriptionType(SubscriptionType subscriptionType)
The type of notification that Amazon Web Services sends to a subscriber.
- Parameters:
subscriptionType- The type of notification that Amazon Web Services sends to a subscriber.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SubscriptionType,SubscriptionType
-
address
Subscriber.Builder address(String address)
The address that Amazon Web Services sends budget notifications to, either an SNS topic or an email.
When you create a subscriber, the value of
Addresscan't contain line breaks.- Parameters:
address- The address that Amazon Web Services sends budget notifications to, either an SNS topic or an email.When you create a subscriber, the value of
Addresscan't contain line breaks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-