You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SageMaker::Types::CreateAppImageConfigRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateAppImageConfigRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  app_image_config_name: "AppImageConfigName", # required
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
  kernel_gateway_image_config: {
    kernel_specs: [ # required
      {
        name: "KernelName", # required
        display_name: "KernelDisplayName",
      },
    ],
    file_system_config: {
      mount_path: "MountPath",
      default_uid: 1,
      default_gid: 1,
    },
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#app_image_config_nameString

The name of the AppImageConfig. Must be unique to your account.

Returns:

  • (String)

    The name of the AppImageConfig.

#kernel_gateway_image_configTypes::KernelGatewayImageConfig

The KernelGatewayImageConfig.

Returns:

#tagsArray<Types::Tag>

A list of tags to apply to the AppImageConfig.

Returns:

  • (Array<Types::Tag>)

    A list of tags to apply to the AppImageConfig.