Interface MessageTemplateSearchExpression.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<MessageTemplateSearchExpression.Builder,
,MessageTemplateSearchExpression> SdkBuilder<MessageTemplateSearchExpression.Builder,
,MessageTemplateSearchExpression> SdkPojo
- Enclosing class:
MessageTemplateSearchExpression
-
Method Summary
Modifier and TypeMethodDescriptionfilters
(Collection<MessageTemplateFilterField> filters) The configuration of filtering rules applied to message template query results.filters
(Consumer<MessageTemplateFilterField.Builder>... filters) The configuration of filtering rules applied to message template query results.filters
(MessageTemplateFilterField... filters) The configuration of filtering rules applied to message template query results.orderOnField
(Consumer<MessageTemplateOrderField.Builder> orderOnField) The message template attribute fields on which the query results are ordered.orderOnField
(MessageTemplateOrderField orderOnField) The message template attribute fields on which the query results are ordered.queries
(Collection<MessageTemplateQueryField> queries) The message template query expressions.queries
(Consumer<MessageTemplateQueryField.Builder>... queries) The message template query expressions.queries
(MessageTemplateQueryField... queries) The message template query expressions.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 Details
-
queries
The message template query expressions.
- Parameters:
queries
- The message template query expressions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queries
The message template query expressions.
- Parameters:
queries
- The message template query expressions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queries
MessageTemplateSearchExpression.Builder queries(Consumer<MessageTemplateQueryField.Builder>... queries) The message template query expressions.
This is a convenience method that creates an instance of theMessageTemplateQueryField.Builder
avoiding the need to create one manually viaMessageTemplateQueryField.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toqueries(List<MessageTemplateQueryField>)
.- Parameters:
queries
- a consumer that will call methods onMessageTemplateQueryField.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
filters
The configuration of filtering rules applied to message template query results.
- Parameters:
filters
- The configuration of filtering rules applied to message template query results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
The configuration of filtering rules applied to message template query results.
- Parameters:
filters
- The configuration of filtering rules applied to message template query results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
MessageTemplateSearchExpression.Builder filters(Consumer<MessageTemplateFilterField.Builder>... filters) The configuration of filtering rules applied to message template query results.
This is a convenience method that creates an instance of theMessageTemplateFilterField.Builder
avoiding the need to create one manually viaMessageTemplateFilterField.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofilters(List<MessageTemplateFilterField>)
.- Parameters:
filters
- a consumer that will call methods onMessageTemplateFilterField.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
orderOnField
The message template attribute fields on which the query results are ordered.
- Parameters:
orderOnField
- The message template attribute fields on which the query results are ordered.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orderOnField
default MessageTemplateSearchExpression.Builder orderOnField(Consumer<MessageTemplateOrderField.Builder> orderOnField) The message template attribute fields on which the query results are ordered.
This is a convenience method that creates an instance of theMessageTemplateOrderField.Builder
avoiding the need to create one manually viaMessageTemplateOrderField.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toorderOnField(MessageTemplateOrderField)
.- Parameters:
orderOnField
- a consumer that will call methods onMessageTemplateOrderField.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-