Interface TablePropertyDescription.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TablePropertyDescription.Builder,TablePropertyDescription>,SdkBuilder<TablePropertyDescription.Builder,TablePropertyDescription>,SdkPojo
- Enclosing class:
- TablePropertyDescription
public static interface TablePropertyDescription.Builder extends SdkPojo, CopyableBuilder<TablePropertyDescription.Builder,TablePropertyDescription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TablePropertyDescription.BuilderdefaultValue(String defaultValue)The default value for the table.TablePropertyDescription.Builderdescription(String description)The description for the table.TablePropertyDescription.Buildername(String name)The name of the table.TablePropertyDescription.BuildervalidValues(String... validValues)The valid values for the table.TablePropertyDescription.BuildervalidValues(Collection<String> validValues)The valid values for the 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
defaultValue
TablePropertyDescription.Builder defaultValue(String defaultValue)
The default value for the table.
- Parameters:
defaultValue- The default value for the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
TablePropertyDescription.Builder description(String description)
The description for the table.
- Parameters:
description- The description for the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
TablePropertyDescription.Builder name(String name)
The name of the table.
- Parameters:
name- The name of the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validValues
TablePropertyDescription.Builder validValues(Collection<String> validValues)
The valid values for the table.
- Parameters:
validValues- The valid values for the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validValues
TablePropertyDescription.Builder validValues(String... validValues)
The valid values for the table.
- Parameters:
validValues- The valid values for the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-