Interface DescribeKeywordsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<DescribeKeywordsRequest.Builder,DescribeKeywordsRequest>,PinpointSmsVoiceV2Request.Builder,SdkBuilder<DescribeKeywordsRequest.Builder,DescribeKeywordsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- DescribeKeywordsRequest
public static interface DescribeKeywordsRequest.Builder extends PinpointSmsVoiceV2Request.Builder, SdkPojo, CopyableBuilder<DescribeKeywordsRequest.Builder,DescribeKeywordsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeKeywordsRequest.Builderfilters(Collection<KeywordFilter> filters)An array of keyword filters to filter the results.DescribeKeywordsRequest.Builderfilters(Consumer<KeywordFilter.Builder>... filters)An array of keyword filters to filter the results.DescribeKeywordsRequest.Builderfilters(KeywordFilter... filters)An array of keyword filters to filter the results.DescribeKeywordsRequest.Builderkeywords(String... keywords)An array of keywords to search for.DescribeKeywordsRequest.Builderkeywords(Collection<String> keywords)An array of keywords to search for.DescribeKeywordsRequest.BuildermaxResults(Integer maxResults)The maximum number of results to return per each request.DescribeKeywordsRequest.BuildernextToken(String nextToken)The token to be used for the next set of paginated results.DescribeKeywordsRequest.BuilderoriginationIdentity(String originationIdentity)The origination identity to use such as a PhoneNumberId, PhoneNumberArn, SenderId or SenderIdArn.DescribeKeywordsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)DescribeKeywordsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
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
DescribeKeywordsRequest.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.
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keywords
DescribeKeywordsRequest.Builder keywords(Collection<String> keywords)
An array of keywords to search for.
- Parameters:
keywords- An array of keywords to search for.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keywords
DescribeKeywordsRequest.Builder keywords(String... keywords)
An array of keywords to search for.
- Parameters:
keywords- An array of keywords to search for.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
DescribeKeywordsRequest.Builder filters(Collection<KeywordFilter> filters)
An array of keyword filters to filter the results.
- Parameters:
filters- An array of keyword filters to filter the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
DescribeKeywordsRequest.Builder filters(KeywordFilter... filters)
An array of keyword filters to filter the results.
- Parameters:
filters- An array of keyword filters to filter the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
DescribeKeywordsRequest.Builder filters(Consumer<KeywordFilter.Builder>... filters)
An array of keyword filters to filter the results.
This is a convenience method that creates an instance of theKeywordFilter.Builderavoiding the need to create one manually viaKeywordFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#filters(List.) - Parameters:
filters- a consumer that will call methods onKeywordFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#filters(java.util.Collection)
-
nextToken
DescribeKeywordsRequest.Builder nextToken(String nextToken)
The token to be used for the next set of paginated results. You don't need to supply a value for this field in the initial request.
- Parameters:
nextToken- The token to be used for the next set of paginated results. You don't need to supply a value for this field in the initial request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
DescribeKeywordsRequest.Builder maxResults(Integer maxResults)
The maximum number of results to return per each request.
- Parameters:
maxResults- The maximum number of results to return per each request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
DescribeKeywordsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
DescribeKeywordsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-