Interface ConfiguredTableSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConfiguredTableSummary.Builder,ConfiguredTableSummary>,SdkBuilder<ConfiguredTableSummary.Builder,ConfiguredTableSummary>,SdkPojo
- Enclosing class:
- ConfiguredTableSummary
public static interface ConfiguredTableSummary.Builder extends SdkPojo, CopyableBuilder<ConfiguredTableSummary.Builder,ConfiguredTableSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfiguredTableSummary.BuilderanalysisMethod(String analysisMethod)The analysis method for the configured tables.ConfiguredTableSummary.BuilderanalysisMethod(AnalysisMethod analysisMethod)The analysis method for the configured tables.ConfiguredTableSummary.BuilderanalysisRuleTypes(Collection<ConfiguredTableAnalysisRuleType> analysisRuleTypes)The types of analysis rules associated with this configured table.ConfiguredTableSummary.BuilderanalysisRuleTypes(ConfiguredTableAnalysisRuleType... analysisRuleTypes)The types of analysis rules associated with this configured table.ConfiguredTableSummary.BuilderanalysisRuleTypesWithStrings(String... analysisRuleTypes)The types of analysis rules associated with this configured table.ConfiguredTableSummary.BuilderanalysisRuleTypesWithStrings(Collection<String> analysisRuleTypes)The types of analysis rules associated with this configured table.ConfiguredTableSummary.Builderarn(String arn)The unique ARN of the configured table.ConfiguredTableSummary.BuildercreateTime(Instant createTime)The time the configured table was created.ConfiguredTableSummary.Builderid(String id)The unique ID of the configured table.ConfiguredTableSummary.Buildername(String name)The name of the configured table.ConfiguredTableSummary.BuilderupdateTime(Instant updateTime)The time the configured table was last updated.-
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
-
id
ConfiguredTableSummary.Builder id(String id)
The unique ID of the configured table.
- Parameters:
id- The unique ID of the configured table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
ConfiguredTableSummary.Builder arn(String arn)
The unique ARN of the configured table.
- Parameters:
arn- The unique ARN of the configured table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
ConfiguredTableSummary.Builder name(String name)
The name of the configured table.
- Parameters:
name- The name of the configured table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createTime
ConfiguredTableSummary.Builder createTime(Instant createTime)
The time the configured table was created.
- Parameters:
createTime- The time the configured table was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updateTime
ConfiguredTableSummary.Builder updateTime(Instant updateTime)
The time the configured table was last updated.
- Parameters:
updateTime- The time the configured table was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
analysisRuleTypesWithStrings
ConfiguredTableSummary.Builder analysisRuleTypesWithStrings(Collection<String> analysisRuleTypes)
The types of analysis rules associated with this configured table.
- Parameters:
analysisRuleTypes- The types of analysis rules associated with this configured table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
analysisRuleTypesWithStrings
ConfiguredTableSummary.Builder analysisRuleTypesWithStrings(String... analysisRuleTypes)
The types of analysis rules associated with this configured table.
- Parameters:
analysisRuleTypes- The types of analysis rules associated with this configured table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
analysisRuleTypes
ConfiguredTableSummary.Builder analysisRuleTypes(Collection<ConfiguredTableAnalysisRuleType> analysisRuleTypes)
The types of analysis rules associated with this configured table.
- Parameters:
analysisRuleTypes- The types of analysis rules associated with this configured table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
analysisRuleTypes
ConfiguredTableSummary.Builder analysisRuleTypes(ConfiguredTableAnalysisRuleType... analysisRuleTypes)
The types of analysis rules associated with this configured table.
- Parameters:
analysisRuleTypes- The types of analysis rules associated with this configured table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
analysisMethod
ConfiguredTableSummary.Builder analysisMethod(String analysisMethod)
The analysis method for the configured tables. The only valid value is currently `DIRECT_QUERY`.
- Parameters:
analysisMethod- The analysis method for the configured tables. The only valid value is currently `DIRECT_QUERY`.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalysisMethod,AnalysisMethod
-
analysisMethod
ConfiguredTableSummary.Builder analysisMethod(AnalysisMethod analysisMethod)
The analysis method for the configured tables. The only valid value is currently `DIRECT_QUERY`.
- Parameters:
analysisMethod- The analysis method for the configured tables. The only valid value is currently `DIRECT_QUERY`.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalysisMethod,AnalysisMethod
-
-