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 Details

    • appImageConfigArn

      AppImageConfigDetails.Builder appImageConfigArn(String 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

      AppImageConfigDetails.Builder appImageConfigName(String 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

      AppImageConfigDetails.Builder creationTime(Instant 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

      AppImageConfigDetails.Builder lastModifiedTime(Instant 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 the KernelGatewayImageConfig.Builder avoiding the need to create one manually via KernelGatewayImageConfig.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to kernelGatewayImageConfig(KernelGatewayImageConfig).

      Parameters:
      kernelGatewayImageConfig - a consumer that will call methods on KernelGatewayImageConfig.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: