Interface ExplainabilityExportSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExplainabilityExportSummary.Builder,ExplainabilityExportSummary>,SdkBuilder<ExplainabilityExportSummary.Builder,ExplainabilityExportSummary>,SdkPojo
- Enclosing class:
- ExplainabilityExportSummary
public static interface ExplainabilityExportSummary.Builder extends SdkPojo, CopyableBuilder<ExplainabilityExportSummary.Builder,ExplainabilityExportSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ExplainabilityExportSummary.BuildercreationTime(Instant creationTime)When the Explainability was created.default ExplainabilityExportSummary.Builderdestination(Consumer<DataDestination.Builder> destination)Sets the value of the Destination property for this object.ExplainabilityExportSummary.Builderdestination(DataDestination destination)Sets the value of the Destination property for this object.ExplainabilityExportSummary.BuilderexplainabilityExportArn(String explainabilityExportArn)The Amazon Resource Name (ARN) of the Explainability export.ExplainabilityExportSummary.BuilderexplainabilityExportName(String explainabilityExportName)The name of the Explainability exportExplainabilityExportSummary.BuilderlastModificationTime(Instant lastModificationTime)The last time the resource was modified.ExplainabilityExportSummary.Buildermessage(String message)Information about any errors that may have occurred during the Explainability export.ExplainabilityExportSummary.Builderstatus(String status)The status of the Explainability export.-
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
-
explainabilityExportArn
ExplainabilityExportSummary.Builder explainabilityExportArn(String explainabilityExportArn)
The Amazon Resource Name (ARN) of the Explainability export.
- Parameters:
explainabilityExportArn- The Amazon Resource Name (ARN) of the Explainability export.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
explainabilityExportName
ExplainabilityExportSummary.Builder explainabilityExportName(String explainabilityExportName)
The name of the Explainability export
- Parameters:
explainabilityExportName- The name of the Explainability export- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
ExplainabilityExportSummary.Builder destination(DataDestination destination)
Sets the value of the Destination property for this object.- Parameters:
destination- The new value for the Destination property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
default ExplainabilityExportSummary.Builder destination(Consumer<DataDestination.Builder> destination)
Sets the value of the Destination property for this object. This is a convenience method that creates an instance of theDataDestination.Builderavoiding the need to create one manually viaDataDestination.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todestination(DataDestination).- Parameters:
destination- a consumer that will call methods onDataDestination.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
destination(DataDestination)
-
status
ExplainabilityExportSummary.Builder status(String status)
The status of the Explainability export. States include:
-
ACTIVE -
CREATE_PENDING,CREATE_IN_PROGRESS,CREATE_FAILED -
CREATE_STOPPING,CREATE_STOPPED -
DELETE_PENDING,DELETE_IN_PROGRESS,DELETE_FAILED
- Parameters:
status- The status of the Explainability export. States include:-
ACTIVE -
CREATE_PENDING,CREATE_IN_PROGRESS,CREATE_FAILED -
CREATE_STOPPING,CREATE_STOPPED -
DELETE_PENDING,DELETE_IN_PROGRESS,DELETE_FAILED
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
message
ExplainabilityExportSummary.Builder message(String message)
Information about any errors that may have occurred during the Explainability export.
- Parameters:
message- Information about any errors that may have occurred during the Explainability export.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
ExplainabilityExportSummary.Builder creationTime(Instant creationTime)
When the Explainability was created.
- Parameters:
creationTime- When the Explainability was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModificationTime
ExplainabilityExportSummary.Builder lastModificationTime(Instant lastModificationTime)
The last time the resource was modified. The timestamp depends on the status of the job:
-
CREATE_PENDING- TheCreationTime. -
CREATE_IN_PROGRESS- The current timestamp. -
CREATE_STOPPING- The current timestamp. -
CREATE_STOPPED- When the job stopped. -
ACTIVEorCREATE_FAILED- When the job finished or failed.
- Parameters:
lastModificationTime- The last time the resource was modified. The timestamp depends on the status of the job:-
CREATE_PENDING- TheCreationTime. -
CREATE_IN_PROGRESS- The current timestamp. -
CREATE_STOPPING- The current timestamp. -
CREATE_STOPPED- When the job stopped. -
ACTIVEorCREATE_FAILED- When the job finished or failed.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-