Interface AppImageConfigDetails.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<AppImageConfigDetails.Builder,
,AppImageConfigDetails> SdkBuilder<AppImageConfigDetails.Builder,
,AppImageConfigDetails> SdkPojo
- Enclosing class:
AppImageConfigDetails
public static interface AppImageConfigDetails.Builder
extends SdkPojo, CopyableBuilder<AppImageConfigDetails.Builder,AppImageConfigDetails>
-
Method Summary
Modifier and TypeMethodDescriptionappImageConfigArn
(String appImageConfigArn) The Amazon Resource Name (ARN) of the AppImageConfig.appImageConfigName
(String appImageConfigName) The name of the AppImageConfig.creationTime
(Instant creationTime) When the AppImageConfig was created.default AppImageConfigDetails.Builder
kernelGatewayImageConfig
(Consumer<KernelGatewayImageConfig.Builder> kernelGatewayImageConfig) The configuration for the file system and kernels in the SageMaker image.kernelGatewayImageConfig
(KernelGatewayImageConfig kernelGatewayImageConfig) The configuration for the file system and kernels in the SageMaker image.lastModifiedTime
(Instant lastModifiedTime) When the AppImageConfig was last modified.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 Details
-
appImageConfigArn
The Amazon Resource Name (ARN) of the AppImageConfig.
- Parameters:
appImageConfigArn
- The Amazon Resource Name (ARN) of the AppImageConfig.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appImageConfigName
The name of the AppImageConfig. Must be unique to your account.
- Parameters:
appImageConfigName
- The name of the AppImageConfig. Must be unique to your account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
When the AppImageConfig was created.
- Parameters:
creationTime
- When the AppImageConfig was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTime
When the AppImageConfig was last modified.
- Parameters:
lastModifiedTime
- When the AppImageConfig was last modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kernelGatewayImageConfig
AppImageConfigDetails.Builder kernelGatewayImageConfig(KernelGatewayImageConfig kernelGatewayImageConfig) The configuration for the file system and kernels in the SageMaker image.
- Parameters:
kernelGatewayImageConfig
- The configuration for the file system and kernels in the SageMaker image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kernelGatewayImageConfig
default AppImageConfigDetails.Builder kernelGatewayImageConfig(Consumer<KernelGatewayImageConfig.Builder> kernelGatewayImageConfig) The configuration for the file system and kernels in the SageMaker image.
This is a convenience method that creates an instance of theKernelGatewayImageConfig.Builder
avoiding the need to create one manually viaKernelGatewayImageConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tokernelGatewayImageConfig(KernelGatewayImageConfig)
.- Parameters:
kernelGatewayImageConfig
- a consumer that will call methods onKernelGatewayImageConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-