Interface LateDataRule.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<LateDataRule.Builder,
,LateDataRule> SdkBuilder<LateDataRule.Builder,
,LateDataRule> SdkPojo
- Enclosing class:
LateDataRule
public static interface LateDataRule.Builder
extends SdkPojo, CopyableBuilder<LateDataRule.Builder,LateDataRule>
-
Method Summary
Modifier and TypeMethodDescriptiondefault LateDataRule.Builder
ruleConfiguration
(Consumer<LateDataRuleConfiguration.Builder> ruleConfiguration) The information needed to configure the late data rule.ruleConfiguration
(LateDataRuleConfiguration ruleConfiguration) The information needed to configure the late data rule.The name of the late data rule.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 Details
-
ruleName
The name of the late data rule.
- Parameters:
ruleName
- The name of the late data rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ruleConfiguration
The information needed to configure the late data rule.
- Parameters:
ruleConfiguration
- The information needed to configure the late data rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ruleConfiguration
default LateDataRule.Builder ruleConfiguration(Consumer<LateDataRuleConfiguration.Builder> ruleConfiguration) The information needed to configure the late data rule.
This is a convenience method that creates an instance of theLateDataRuleConfiguration.Builder
avoiding the need to create one manually viaLateDataRuleConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toruleConfiguration(LateDataRuleConfiguration)
.- Parameters:
ruleConfiguration
- a consumer that will call methods onLateDataRuleConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-