Interface ImportsListItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ImportsListItem.Builder,ImportsListItem>,SdkBuilder<ImportsListItem.Builder,ImportsListItem>,SdkPojo
- Enclosing class:
- ImportsListItem
public static interface ImportsListItem.Builder extends SdkPojo, CopyableBuilder<ImportsListItem.Builder,ImportsListItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImportsListItem.BuildercreatedTimestamp(Instant createdTimestamp)The timestamp of the import's creation.ImportsListItem.Builderdestinations(String... destinations)The ARN of the destination event data store.ImportsListItem.Builderdestinations(Collection<String> destinations)The ARN of the destination event data store.ImportsListItem.BuilderimportId(String importId)The ID of the import.ImportsListItem.BuilderimportStatus(String importStatus)The status of the import.ImportsListItem.BuilderimportStatus(ImportStatus importStatus)The status of the import.ImportsListItem.BuilderupdatedTimestamp(Instant updatedTimestamp)The timestamp of the import's last update.-
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
-
importId
ImportsListItem.Builder importId(String importId)
The ID of the import.
- Parameters:
importId- The ID of the import.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
importStatus
ImportsListItem.Builder importStatus(String importStatus)
The status of the import.
- Parameters:
importStatus- The status of the import.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImportStatus,ImportStatus
-
importStatus
ImportsListItem.Builder importStatus(ImportStatus importStatus)
The status of the import.
- Parameters:
importStatus- The status of the import.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImportStatus,ImportStatus
-
destinations
ImportsListItem.Builder destinations(Collection<String> destinations)
The ARN of the destination event data store.
- Parameters:
destinations- The ARN of the destination event data store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinations
ImportsListItem.Builder destinations(String... destinations)
The ARN of the destination event data store.
- Parameters:
destinations- The ARN of the destination event data store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdTimestamp
ImportsListItem.Builder createdTimestamp(Instant createdTimestamp)
The timestamp of the import's creation.
- Parameters:
createdTimestamp- The timestamp of the import's creation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedTimestamp
ImportsListItem.Builder updatedTimestamp(Instant updatedTimestamp)
The timestamp of the import's last update.
- Parameters:
updatedTimestamp- The timestamp of the import's last update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-