Show / Hide Table of Contents

Class ModelArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ModelArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Sagemaker
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ModelArgs : ResourceArgs

Constructors

View Source

ModelArgs()

Declaration
public ModelArgs()

Properties

View Source

Containers

Specifies containers in the inference pipeline. If not specified, the primary_container argument is required. Fields are documented below.

Declaration
public InputList<ModelContainerArgs> Containers { get; set; }
Property Value
Type Description
InputList<ModelContainerArgs>
View Source

EnableNetworkIsolation

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

Declaration
public Input<bool> EnableNetworkIsolation { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

ExecutionRoleArn

A role that SageMaker can assume to access model artifacts and docker images for deployment.

Declaration
public Input<string> ExecutionRoleArn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The name of the model (must be unique). If omitted, this provider will assign a random, unique name.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PrimaryContainer

The primary docker image containing inference code that is used when the model is deployed for predictions. If not specified, the container argument is required. Fields are documented below.

Declaration
public Input<ModelPrimaryContainerArgs> PrimaryContainer { get; set; }
Property Value
Type Description
Input<ModelPrimaryContainerArgs>
View Source

Tags

A map of tags to assign to the resource.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

VpcConfig

Specifies the VPC that you want your model to connect to. VpcConfig is used in hosting services and in batch transform.

Declaration
public Input<ModelVpcConfigArgs> VpcConfig { get; set; }
Property Value
Type Description
Input<ModelVpcConfigArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.