Interface ExplainabilitySummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExplainabilitySummary.Builder,ExplainabilitySummary>,SdkBuilder<ExplainabilitySummary.Builder,ExplainabilitySummary>,SdkPojo
- Enclosing class:
- ExplainabilitySummary
public static interface ExplainabilitySummary.Builder extends SdkPojo, CopyableBuilder<ExplainabilitySummary.Builder,ExplainabilitySummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ExplainabilitySummary.BuildercreationTime(Instant creationTime)When the Explainability was created.ExplainabilitySummary.BuilderexplainabilityArn(String explainabilityArn)The Amazon Resource Name (ARN) of the Explainability.default ExplainabilitySummary.BuilderexplainabilityConfig(Consumer<ExplainabilityConfig.Builder> explainabilityConfig)The configuration settings that define the granularity of time series and time points for the Explainability.ExplainabilitySummary.BuilderexplainabilityConfig(ExplainabilityConfig explainabilityConfig)The configuration settings that define the granularity of time series and time points for the Explainability.ExplainabilitySummary.BuilderexplainabilityName(String explainabilityName)The name of the Explainability.ExplainabilitySummary.BuilderlastModificationTime(Instant lastModificationTime)The last time the resource was modified.ExplainabilitySummary.Buildermessage(String message)Information about any errors that may have occurred during the Explainability creation process.ExplainabilitySummary.BuilderresourceArn(String resourceArn)The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.ExplainabilitySummary.Builderstatus(String status)The status of the Explainability.-
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
-
explainabilityArn
ExplainabilitySummary.Builder explainabilityArn(String explainabilityArn)
The Amazon Resource Name (ARN) of the Explainability.
- Parameters:
explainabilityArn- The Amazon Resource Name (ARN) of the Explainability.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
explainabilityName
ExplainabilitySummary.Builder explainabilityName(String explainabilityName)
The name of the Explainability.
- Parameters:
explainabilityName- The name of the Explainability.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceArn
ExplainabilitySummary.Builder resourceArn(String resourceArn)
The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.
- Parameters:
resourceArn- The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
explainabilityConfig
ExplainabilitySummary.Builder explainabilityConfig(ExplainabilityConfig explainabilityConfig)
The configuration settings that define the granularity of time series and time points for the Explainability.
- Parameters:
explainabilityConfig- The configuration settings that define the granularity of time series and time points for the Explainability.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
explainabilityConfig
default ExplainabilitySummary.Builder explainabilityConfig(Consumer<ExplainabilityConfig.Builder> explainabilityConfig)
The configuration settings that define the granularity of time series and time points for the Explainability.
This is a convenience method that creates an instance of theExplainabilityConfig.Builderavoiding the need to create one manually viaExplainabilityConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexplainabilityConfig(ExplainabilityConfig).- Parameters:
explainabilityConfig- a consumer that will call methods onExplainabilityConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
explainabilityConfig(ExplainabilityConfig)
-
status
ExplainabilitySummary.Builder status(String status)
The status of the Explainability. 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. 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
ExplainabilitySummary.Builder message(String message)
Information about any errors that may have occurred during the Explainability creation process.
- Parameters:
message- Information about any errors that may have occurred during the Explainability creation process.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
ExplainabilitySummary.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
ExplainabilitySummary.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.
-
-
-