Class: Aws::SageMaker::Types::CreateModelInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

When making an API call, you may pass CreateModelInput data as a hash:

{
  model_name: "ModelName", # required
  primary_container: {
    container_hostname: "ContainerHostname",
    image: "Image",
    model_data_url: "Url",
    environment: {
      "EnvironmentKey" => "EnvironmentValue",
    },
    model_package_name: "ArnOrName",
  },
  containers: [
    {
      container_hostname: "ContainerHostname",
      image: "Image",
      model_data_url: "Url",
      environment: {
        "EnvironmentKey" => "EnvironmentValue",
      },
      model_package_name: "ArnOrName",
    },
  ],
  execution_role_arn: "RoleArn", # required
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
  vpc_config: {
    security_group_ids: ["SecurityGroupId"], # required
    subnets: ["SubnetId"], # required
  },
  enable_network_isolation: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#containersArray<Types::ContainerDefinition>

Specifies the containers in the inference pipeline.

Returns:



1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
# File 'lib/aws-sdk-sagemaker/types.rb', line 1966

class CreateModelInput < Struct.new(
  :model_name,
  :primary_container,
  :containers,
  :execution_role_arn,
  :tags,
  :vpc_config,
  :enable_network_isolation)
  include Aws::Structure
end

#enable_network_isolationBoolean

Isolates the model container. No inbound or outbound network calls can be made to or from the model container.

<note markdown=“1”> The Semantic Segmentation built-in algorithm does not support network isolation.

</note>

Returns:

  • (Boolean)


1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
# File 'lib/aws-sdk-sagemaker/types.rb', line 1966

class CreateModelInput < Struct.new(
  :model_name,
  :primary_container,
  :containers,
  :execution_role_arn,
  :tags,
  :vpc_config,
  :enable_network_isolation)
  include Aws::Structure
end

#execution_role_arnString

The Amazon Resource Name (ARN) of the IAM role that Amazon SageMaker can assume to access model artifacts and docker image for deployment on ML compute instances or for batch transform jobs. Deploying on ML compute instances is part of model hosting. For more information, see [Amazon SageMaker Roles].

<note markdown=“1”> To be able to pass this role to Amazon SageMaker, the caller of this API must have the ‘iam:PassRole` permission.

</note>

[1]: docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-roles.html

Returns:

  • (String)


1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
# File 'lib/aws-sdk-sagemaker/types.rb', line 1966

class CreateModelInput < Struct.new(
  :model_name,
  :primary_container,
  :containers,
  :execution_role_arn,
  :tags,
  :vpc_config,
  :enable_network_isolation)
  include Aws::Structure
end

#model_nameString

The name of the new model.

Returns:

  • (String)


1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
# File 'lib/aws-sdk-sagemaker/types.rb', line 1966

class CreateModelInput < Struct.new(
  :model_name,
  :primary_container,
  :containers,
  :execution_role_arn,
  :tags,
  :vpc_config,
  :enable_network_isolation)
  include Aws::Structure
end

#primary_containerTypes::ContainerDefinition

The location of the primary docker image containing inference code, associated artifacts, and custom environment map that the inference code uses when the model is deployed for predictions.



1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
# File 'lib/aws-sdk-sagemaker/types.rb', line 1966

class CreateModelInput < Struct.new(
  :model_name,
  :primary_container,
  :containers,
  :execution_role_arn,
  :tags,
  :vpc_config,
  :enable_network_isolation)
  include Aws::Structure
end

#tagsArray<Types::Tag>

An array of key-value pairs. For more information, see [Using Cost Allocation Tags] in the *AWS Billing and Cost Management User Guide*.

[1]: docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-what

Returns:



1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
# File 'lib/aws-sdk-sagemaker/types.rb', line 1966

class CreateModelInput < Struct.new(
  :model_name,
  :primary_container,
  :containers,
  :execution_role_arn,
  :tags,
  :vpc_config,
  :enable_network_isolation)
  include Aws::Structure
end

#vpc_configTypes::VpcConfig

A VpcConfig object that specifies the VPC that you want your model to connect to. Control access to and from your model container by configuring the VPC. ‘VpcConfig` is used in hosting services and in batch transform. For more information, see [Protect Endpoints by Using an Amazon Virtual Private Cloud] and [Protect Data in Batch Transform Jobs by Using an Amazon Virtual Private Cloud].

[1]: docs.aws.amazon.com/sagemaker/latest/dg/host-vpc.html [2]: docs.aws.amazon.com/sagemaker/latest/dg/batch-vpc.html

Returns:



1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
# File 'lib/aws-sdk-sagemaker/types.rb', line 1966

class CreateModelInput < Struct.new(
  :model_name,
  :primary_container,
  :containers,
  :execution_role_arn,
  :tags,
  :vpc_config,
  :enable_network_isolation)
  include Aws::Structure
end