Interface Index.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Index.Builder,Index>,SdkBuilder<Index.Builder,Index>,SdkPojo
- Enclosing class:
- Index
public static interface Index.Builder extends SdkPojo, CopyableBuilder<Index.Builder,Index>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Index.BuildercreatedAt(Instant createdAt)The Unix timestamp when the index was created.Index.BuilderdisplayName(String displayName)The name of the index.Index.BuilderindexId(String indexId)The identifier for the index.Index.Builderstatus(String status)The current status of the index.Index.Builderstatus(IndexStatus status)The current status of the index.Index.BuilderupdatedAt(Instant updatedAt)The Unix timestamp when the index 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
-
createdAt
Index.Builder createdAt(Instant createdAt)
The Unix timestamp when the index was created.
- Parameters:
createdAt- The Unix timestamp when the index was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayName
Index.Builder displayName(String displayName)
The name of the index.
- Parameters:
displayName- The name of the index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indexId
Index.Builder indexId(String indexId)
The identifier for the index.
- Parameters:
indexId- The identifier for the index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
Index.Builder status(String status)
The current status of the index. When the status is
ACTIVE, the index is ready.- Parameters:
status- The current status of the index. When the status isACTIVE, the index is ready.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IndexStatus,IndexStatus
-
status
Index.Builder status(IndexStatus status)
The current status of the index. When the status is
ACTIVE, the index is ready.- Parameters:
status- The current status of the index. When the status isACTIVE, the index is ready.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IndexStatus,IndexStatus
-
updatedAt
Index.Builder updatedAt(Instant updatedAt)
The Unix timestamp when the index was last updated.
- Parameters:
updatedAt- The Unix timestamp when the index was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-