Interface Termination.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Termination.Builder,Termination>,SdkBuilder<Termination.Builder,Termination>,SdkPojo
- Enclosing class:
- Termination
public static interface Termination.Builder extends SdkPojo, CopyableBuilder<Termination.Builder,Termination>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Termination.BuildercallingRegions(String... callingRegions)The countries to which calls are allowed, in ISO 3166-1 alpha-2 format.Termination.BuildercallingRegions(Collection<String> callingRegions)The countries to which calls are allowed, in ISO 3166-1 alpha-2 format.Termination.BuildercidrAllowedList(String... cidrAllowedList)The IP addresses allowed to make calls, in CIDR format.Termination.BuildercidrAllowedList(Collection<String> cidrAllowedList)The IP addresses allowed to make calls, in CIDR format.Termination.BuildercpsLimit(Integer cpsLimit)The limit on calls per second.Termination.BuilderdefaultPhoneNumber(String defaultPhoneNumber)The default caller ID phone number.Termination.Builderdisabled(Boolean disabled)When termination settings are disabled, outbound calls can not be made.-
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
-
cpsLimit
Termination.Builder cpsLimit(Integer cpsLimit)
The limit on calls per second. Max value based on account service quota. Default value of 1.
- Parameters:
cpsLimit- The limit on calls per second. Max value based on account service quota. Default value of 1.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultPhoneNumber
Termination.Builder defaultPhoneNumber(String defaultPhoneNumber)
The default caller ID phone number.
- Parameters:
defaultPhoneNumber- The default caller ID phone number.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
callingRegions
Termination.Builder callingRegions(Collection<String> callingRegions)
The countries to which calls are allowed, in ISO 3166-1 alpha-2 format. Required.
- Parameters:
callingRegions- The countries to which calls are allowed, in ISO 3166-1 alpha-2 format. Required.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
callingRegions
Termination.Builder callingRegions(String... callingRegions)
The countries to which calls are allowed, in ISO 3166-1 alpha-2 format. Required.
- Parameters:
callingRegions- The countries to which calls are allowed, in ISO 3166-1 alpha-2 format. Required.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cidrAllowedList
Termination.Builder cidrAllowedList(Collection<String> cidrAllowedList)
The IP addresses allowed to make calls, in CIDR format. Required.
- Parameters:
cidrAllowedList- The IP addresses allowed to make calls, in CIDR format. Required.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cidrAllowedList
Termination.Builder cidrAllowedList(String... cidrAllowedList)
The IP addresses allowed to make calls, in CIDR format. Required.
- Parameters:
cidrAllowedList- The IP addresses allowed to make calls, in CIDR format. Required.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
disabled
Termination.Builder disabled(Boolean disabled)
When termination settings are disabled, outbound calls can not be made.
- Parameters:
disabled- When termination settings are disabled, outbound calls can not be made.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-