Interface KxChangesetListEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KxChangesetListEntry.Builder,KxChangesetListEntry>,SdkBuilder<KxChangesetListEntry.Builder,KxChangesetListEntry>,SdkPojo
- Enclosing class:
- KxChangesetListEntry
public static interface KxChangesetListEntry.Builder extends SdkPojo, CopyableBuilder<KxChangesetListEntry.Builder,KxChangesetListEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KxChangesetListEntry.BuilderactiveFromTimestamp(Instant activeFromTimestamp)Beginning time from which the changeset is active.KxChangesetListEntry.BuilderchangesetId(String changesetId)A unique identifier for the changeset.KxChangesetListEntry.BuildercreatedTimestamp(Instant createdTimestamp)The timestamp at which the changeset was created in FinSpace.KxChangesetListEntry.BuilderlastModifiedTimestamp(Instant lastModifiedTimestamp)The timestamp at which the changeset was modified.KxChangesetListEntry.Builderstatus(String status)Status of the changeset.KxChangesetListEntry.Builderstatus(ChangesetStatus status)Status of the changeset.-
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
-
changesetId
KxChangesetListEntry.Builder changesetId(String changesetId)
A unique identifier for the changeset.
- Parameters:
changesetId- A unique identifier for the changeset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdTimestamp
KxChangesetListEntry.Builder createdTimestamp(Instant createdTimestamp)
The timestamp at which the changeset was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
- Parameters:
createdTimestamp- The timestamp at which the changeset was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
activeFromTimestamp
KxChangesetListEntry.Builder activeFromTimestamp(Instant activeFromTimestamp)
Beginning time from which the changeset is active. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
- Parameters:
activeFromTimestamp- Beginning time from which the changeset is active. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTimestamp
KxChangesetListEntry.Builder lastModifiedTimestamp(Instant lastModifiedTimestamp)
The timestamp at which the changeset was modified. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
- Parameters:
lastModifiedTimestamp- The timestamp at which the changeset was modified. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
KxChangesetListEntry.Builder status(String status)
Status of the changeset.
-
Pending – Changeset creation is pending.
-
Processing – Changeset creation is running.
-
Failed – Changeset creation has failed.
-
Complete – Changeset creation has succeeded.
- Parameters:
status- Status of the changeset.-
Pending – Changeset creation is pending.
-
Processing – Changeset creation is running.
-
Failed – Changeset creation has failed.
-
Complete – Changeset creation has succeeded.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChangesetStatus,ChangesetStatus
-
-
status
KxChangesetListEntry.Builder status(ChangesetStatus status)
Status of the changeset.
-
Pending – Changeset creation is pending.
-
Processing – Changeset creation is running.
-
Failed – Changeset creation has failed.
-
Complete – Changeset creation has succeeded.
- Parameters:
status- Status of the changeset.-
Pending – Changeset creation is pending.
-
Processing – Changeset creation is running.
-
Failed – Changeset creation has failed.
-
Complete – Changeset creation has succeeded.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChangesetStatus,ChangesetStatus
-
-
-