Class: Aws::SageMaker::Types::KernelGatewayAppSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::KernelGatewayAppSettings
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
The KernelGateway app settings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_images ⇒ Array<Types::CustomImage>
A list of custom SageMaker images that are configured to run as a KernelGateway app.
-
#default_resource_spec ⇒ Types::ResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
-
#lifecycle_config_arns ⇒ Array<String>
The Amazon Resource Name (ARN) of the Lifecycle Configurations attached to the the user profile or domain.
Instance Attribute Details
#custom_images ⇒ Array<Types::CustomImage>
A list of custom SageMaker images that are configured to run as a KernelGateway app.
25372 25373 25374 25375 25376 25377 25378 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 25372 class KernelGatewayAppSettings < Struct.new( :default_resource_spec, :custom_images, :lifecycle_config_arns) SENSITIVE = [] include Aws::Structure end |
#default_resource_spec ⇒ Types::ResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
<note markdown=“1”> The Amazon SageMaker Studio UI does not use the default instance type value set here. The default instance type set here is used when Apps are created using the CLI or CloudFormation and the instance type parameter value is not passed.
</note>
25372 25373 25374 25375 25376 25377 25378 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 25372 class KernelGatewayAppSettings < Struct.new( :default_resource_spec, :custom_images, :lifecycle_config_arns) SENSITIVE = [] include Aws::Structure end |
#lifecycle_config_arns ⇒ Array<String>
The Amazon Resource Name (ARN) of the Lifecycle Configurations attached to the the user profile or domain.
<note markdown=“1”> To remove a Lifecycle Config, you must set ‘LifecycleConfigArns` to an empty list.
</note>
25372 25373 25374 25375 25376 25377 25378 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 25372 class KernelGatewayAppSettings < Struct.new( :default_resource_spec, :custom_images, :lifecycle_config_arns) SENSITIVE = [] include Aws::Structure end |