Interface CreatePoolRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreatePoolRequest.Builder,CreatePoolRequest>,PinpointSmsVoiceV2Request.Builder,SdkBuilder<CreatePoolRequest.Builder,CreatePoolRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreatePoolRequest
public static interface CreatePoolRequest.Builder extends PinpointSmsVoiceV2Request.Builder, SdkPojo, CopyableBuilder<CreatePoolRequest.Builder,CreatePoolRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreatePoolRequest.BuilderclientToken(String clientToken)Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.CreatePoolRequest.BuilderdeletionProtectionEnabled(Boolean deletionProtectionEnabled)By default this is set to false.CreatePoolRequest.BuilderisoCountryCode(String isoCountryCode)The new two-character code, in ISO 3166-1 alpha-2 format, for the country or region of the new pool.CreatePoolRequest.BuildermessageType(String messageType)The type of message.CreatePoolRequest.BuildermessageType(MessageType messageType)The type of message.CreatePoolRequest.BuilderoriginationIdentity(String originationIdentity)The origination identity to use such as a PhoneNumberId, PhoneNumberArn, SenderId or SenderIdArn.CreatePoolRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreatePoolRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreatePoolRequest.Buildertags(Collection<Tag> tags)An array of tags (key and value pairs) associated with the pool.CreatePoolRequest.Buildertags(Consumer<Tag.Builder>... tags)An array of tags (key and value pairs) associated with the pool.CreatePoolRequest.Buildertags(Tag... tags)An array of tags (key and value pairs) associated with the pool.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.pinpointsmsvoicev2.model.PinpointSmsVoiceV2Request.Builder
build
-
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
-
originationIdentity
CreatePoolRequest.Builder originationIdentity(String originationIdentity)
The origination identity to use such as a PhoneNumberId, PhoneNumberArn, SenderId or SenderIdArn. You can use DescribePhoneNumbers to find the values for PhoneNumberId and PhoneNumberArn while DescribeSenderIds can be used to get the values for SenderId and SenderIdArn.
After the pool is created you can add more origination identities to the pool by using AssociateOriginationIdentity.
- Parameters:
originationIdentity- The origination identity to use such as a PhoneNumberId, PhoneNumberArn, SenderId or SenderIdArn. You can use DescribePhoneNumbers to find the values for PhoneNumberId and PhoneNumberArn while DescribeSenderIds can be used to get the values for SenderId and SenderIdArn.After the pool is created you can add more origination identities to the pool by using AssociateOriginationIdentity.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isoCountryCode
CreatePoolRequest.Builder isoCountryCode(String isoCountryCode)
The new two-character code, in ISO 3166-1 alpha-2 format, for the country or region of the new pool.
- Parameters:
isoCountryCode- The new two-character code, in ISO 3166-1 alpha-2 format, for the country or region of the new pool.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
messageType
CreatePoolRequest.Builder messageType(String messageType)
The type of message. Valid values are TRANSACTIONAL for messages that are critical or time-sensitive and PROMOTIONAL for messages that aren't critical or time-sensitive. After the pool is created the MessageType can't be changed.
- Parameters:
messageType- The type of message. Valid values are TRANSACTIONAL for messages that are critical or time-sensitive and PROMOTIONAL for messages that aren't critical or time-sensitive. After the pool is created the MessageType can't be changed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MessageType,MessageType
-
messageType
CreatePoolRequest.Builder messageType(MessageType messageType)
The type of message. Valid values are TRANSACTIONAL for messages that are critical or time-sensitive and PROMOTIONAL for messages that aren't critical or time-sensitive. After the pool is created the MessageType can't be changed.
- Parameters:
messageType- The type of message. Valid values are TRANSACTIONAL for messages that are critical or time-sensitive and PROMOTIONAL for messages that aren't critical or time-sensitive. After the pool is created the MessageType can't be changed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MessageType,MessageType
-
deletionProtectionEnabled
CreatePoolRequest.Builder deletionProtectionEnabled(Boolean deletionProtectionEnabled)
By default this is set to false. When set to true the pool can't be deleted. You can change this value using the UpdatePool action.
- Parameters:
deletionProtectionEnabled- By default this is set to false. When set to true the pool can't be deleted. You can change this value using the UpdatePool action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreatePoolRequest.Builder tags(Collection<Tag> tags)
An array of tags (key and value pairs) associated with the pool.
- Parameters:
tags- An array of tags (key and value pairs) associated with the pool.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreatePoolRequest.Builder tags(Tag... tags)
An array of tags (key and value pairs) associated with the pool.
- Parameters:
tags- An array of tags (key and value pairs) associated with the pool.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreatePoolRequest.Builder tags(Consumer<Tag.Builder>... tags)
An array of tags (key and value pairs) associated with the pool.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
clientToken
CreatePoolRequest.Builder clientToken(String clientToken)
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don't specify a client token, a randomly generated token is used for the request to ensure idempotency.
- Parameters:
clientToken- Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don't specify a client token, a randomly generated token is used for the request to ensure idempotency.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreatePoolRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreatePoolRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-