Interface TableSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableSummary.Builder,TableSummary>,SdkBuilder<TableSummary.Builder,TableSummary>,SdkPojo
- Enclosing class:
- TableSummary
public static interface TableSummary.Builder extends SdkPojo, CopyableBuilder<TableSummary.Builder,TableSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableSummary.BuildercreatedAt(Instant createdAt)The date and time the table was created at.TableSummary.BuildermodifiedAt(Instant modifiedAt)The date and time the table was last modified at.TableSummary.Buildername(String name)The name of the table.TableSummary.Buildernamespace(String... namespace)The name of the namespace.TableSummary.Buildernamespace(Collection<String> namespace)The name of the namespace.TableSummary.BuildertableARN(String tableARN)The Amazon Resource Name (ARN) of the table.TableSummary.Buildertype(String type)The type of the table.TableSummary.Buildertype(TableType type)The type of 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
-
namespace
TableSummary.Builder namespace(Collection<String> namespace)
The name of the namespace.
- Parameters:
namespace- The name of the namespace.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
namespace
TableSummary.Builder namespace(String... namespace)
The name of the namespace.
- Parameters:
namespace- The name of the namespace.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
TableSummary.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.
-
type
TableSummary.Builder type(String type)
The type of the table.
-
type
TableSummary.Builder type(TableType type)
The type of the table.
-
tableARN
TableSummary.Builder tableARN(String tableARN)
The Amazon Resource Name (ARN) of the table.
- Parameters:
tableARN- The Amazon Resource Name (ARN) of the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
TableSummary.Builder createdAt(Instant createdAt)
The date and time the table was created at.
- Parameters:
createdAt- The date and time the table was created at.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modifiedAt
TableSummary.Builder modifiedAt(Instant modifiedAt)
The date and time the table was last modified at.
- Parameters:
modifiedAt- The date and time the table was last modified at.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-