Interface MLOutputConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MLOutputConfiguration.Builder,MLOutputConfiguration>,SdkBuilder<MLOutputConfiguration.Builder,MLOutputConfiguration>,SdkPojo
- Enclosing class:
- MLOutputConfiguration
public static interface MLOutputConfiguration.Builder extends SdkPojo, CopyableBuilder<MLOutputConfiguration.Builder,MLOutputConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default MLOutputConfiguration.Builderdestination(Consumer<Destination.Builder> destination)The Amazon S3 location where exported model artifacts are stored.MLOutputConfiguration.Builderdestination(Destination destination)The Amazon S3 location where exported model artifacts are stored.MLOutputConfiguration.BuilderroleArn(String roleArn)The Amazon Resource Name (ARN) of the service access role that is used to store the model artifacts.-
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
-
destination
MLOutputConfiguration.Builder destination(Destination destination)
The Amazon S3 location where exported model artifacts are stored.
- Parameters:
destination- The Amazon S3 location where exported model artifacts are stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
default MLOutputConfiguration.Builder destination(Consumer<Destination.Builder> destination)
The Amazon S3 location where exported model artifacts are stored.
This is a convenience method that creates an instance of theDestination.Builderavoiding the need to create one manually viaDestination.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todestination(Destination).- Parameters:
destination- a consumer that will call methods onDestination.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
destination(Destination)
-
roleArn
MLOutputConfiguration.Builder roleArn(String roleArn)
The Amazon Resource Name (ARN) of the service access role that is used to store the model artifacts.
- Parameters:
roleArn- The Amazon Resource Name (ARN) of the service access role that is used to store the model artifacts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-