Interface AnalysisRulePolicyV1.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AnalysisRulePolicyV1.Builder,AnalysisRulePolicyV1>,SdkBuilder<AnalysisRulePolicyV1.Builder,AnalysisRulePolicyV1>,SdkPojo
- Enclosing class:
- AnalysisRulePolicyV1
public static interface AnalysisRulePolicyV1.Builder extends SdkPojo, CopyableBuilder<AnalysisRulePolicyV1.Builder,AnalysisRulePolicyV1>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AnalysisRulePolicyV1.Builderaggregation(Consumer<AnalysisRuleAggregation.Builder> aggregation)Analysis rule type that enables only aggregation queries on a configured table.AnalysisRulePolicyV1.Builderaggregation(AnalysisRuleAggregation aggregation)Analysis rule type that enables only aggregation queries on a configured table.default AnalysisRulePolicyV1.Buildercustom(Consumer<AnalysisRuleCustom.Builder> custom)Analysis rule type that enables custom SQL queries on a configured table.AnalysisRulePolicyV1.Buildercustom(AnalysisRuleCustom custom)Analysis rule type that enables custom SQL queries on a configured table.default AnalysisRulePolicyV1.Builderlist(Consumer<AnalysisRuleList.Builder> list)Analysis rule type that enables only list queries on a configured table.AnalysisRulePolicyV1.Builderlist(AnalysisRuleList list)Analysis rule type that enables only list queries on a configured table.-
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
-
list
AnalysisRulePolicyV1.Builder list(AnalysisRuleList list)
Analysis rule type that enables only list queries on a configured table.
- Parameters:
list- Analysis rule type that enables only list queries on a configured table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
list
default AnalysisRulePolicyV1.Builder list(Consumer<AnalysisRuleList.Builder> list)
Analysis rule type that enables only list queries on a configured table.
This is a convenience method that creates an instance of theAnalysisRuleList.Builderavoiding the need to create one manually viaAnalysisRuleList.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tolist(AnalysisRuleList).- Parameters:
list- a consumer that will call methods onAnalysisRuleList.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
list(AnalysisRuleList)
-
aggregation
AnalysisRulePolicyV1.Builder aggregation(AnalysisRuleAggregation aggregation)
Analysis rule type that enables only aggregation queries on a configured table.
- Parameters:
aggregation- Analysis rule type that enables only aggregation queries on a configured table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
aggregation
default AnalysisRulePolicyV1.Builder aggregation(Consumer<AnalysisRuleAggregation.Builder> aggregation)
Analysis rule type that enables only aggregation queries on a configured table.
This is a convenience method that creates an instance of theAnalysisRuleAggregation.Builderavoiding the need to create one manually viaAnalysisRuleAggregation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toaggregation(AnalysisRuleAggregation).- Parameters:
aggregation- a consumer that will call methods onAnalysisRuleAggregation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
aggregation(AnalysisRuleAggregation)
-
custom
AnalysisRulePolicyV1.Builder custom(AnalysisRuleCustom custom)
Analysis rule type that enables custom SQL queries on a configured table.
- Parameters:
custom- Analysis rule type that enables custom SQL queries on a configured table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
custom
default AnalysisRulePolicyV1.Builder custom(Consumer<AnalysisRuleCustom.Builder> custom)
Analysis rule type that enables custom SQL queries on a configured table.
This is a convenience method that creates an instance of theAnalysisRuleCustom.Builderavoiding the need to create one manually viaAnalysisRuleCustom.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocustom(AnalysisRuleCustom).- Parameters:
custom- a consumer that will call methods onAnalysisRuleCustom.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
custom(AnalysisRuleCustom)
-
-