Interface TopicRule.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TopicRule.Builder,TopicRule>,SdkBuilder<TopicRule.Builder,TopicRule>,SdkPojo
- Enclosing class:
- TopicRule
public static interface TopicRule.Builder extends SdkPojo, CopyableBuilder<TopicRule.Builder,TopicRule>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description TopicRule.Builderactions(Collection<Action> actions)The actions associated with the rule.TopicRule.Builderactions(Consumer<Action.Builder>... actions)The actions associated with the rule.TopicRule.Builderactions(Action... actions)The actions associated with the rule.TopicRule.BuilderawsIotSqlVersion(String awsIotSqlVersion)The version of the SQL rules engine to use when evaluating the rule.TopicRule.BuildercreatedAt(Instant createdAt)The date and time the rule was created.TopicRule.Builderdescription(String description)The description of the rule.default TopicRule.BuildererrorAction(Consumer<Action.Builder> errorAction)The action to perform when an error occurs.TopicRule.BuildererrorAction(Action errorAction)The action to perform when an error occurs.TopicRule.BuilderruleDisabled(Boolean ruleDisabled)Specifies whether the rule is disabled.TopicRule.BuilderruleName(String ruleName)The name of the rule.TopicRule.Buildersql(String sql)The SQL statement used to query the topic.-
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, sdkFields
-
-
-
-
Method Detail
-
ruleName
TopicRule.Builder ruleName(String ruleName)
The name of the rule.
- Parameters:
ruleName- The name of the rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sql
TopicRule.Builder sql(String sql)
The SQL statement used to query the topic. When using a SQL query with multiple lines, be sure to escape the newline characters.
- Parameters:
sql- The SQL statement used to query the topic. When using a SQL query with multiple lines, be sure to escape the newline characters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
TopicRule.Builder description(String description)
The description of the rule.
- Parameters:
description- The description of the rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
TopicRule.Builder createdAt(Instant createdAt)
The date and time the rule was created.
- Parameters:
createdAt- The date and time the rule was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actions
TopicRule.Builder actions(Collection<Action> actions)
The actions associated with the rule.
- Parameters:
actions- The actions associated with the rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actions
TopicRule.Builder actions(Action... actions)
The actions associated with the rule.
- Parameters:
actions- The actions associated with the rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actions
TopicRule.Builder actions(Consumer<Action.Builder>... actions)
The actions associated with the rule.
This is a convenience method that creates an instance of theAction.Builderavoiding the need to create one manually viaAction.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#actions(List.) - Parameters:
actions- a consumer that will call methods onAction.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#actions(java.util.Collection)
-
ruleDisabled
TopicRule.Builder ruleDisabled(Boolean ruleDisabled)
Specifies whether the rule is disabled.
- Parameters:
ruleDisabled- Specifies whether the rule is disabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
awsIotSqlVersion
TopicRule.Builder awsIotSqlVersion(String awsIotSqlVersion)
The version of the SQL rules engine to use when evaluating the rule.
- Parameters:
awsIotSqlVersion- The version of the SQL rules engine to use when evaluating the rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorAction
TopicRule.Builder errorAction(Action errorAction)
The action to perform when an error occurs.
- Parameters:
errorAction- The action to perform when an error occurs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorAction
default TopicRule.Builder errorAction(Consumer<Action.Builder> errorAction)
The action to perform when an error occurs.
This is a convenience method that creates an instance of theAction.Builderavoiding the need to create one manually viaAction.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toerrorAction(Action).- Parameters:
errorAction- a consumer that will call methods onAction.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
errorAction(Action)
-
-