Class ModelArgs
Inherited Members
Namespace: Pulumi.Aws.Sagemaker
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ModelArgs : ResourceArgs
Constructors
View SourceModelArgs()
Declaration
public ModelArgs()
Properties
View SourceContainers
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> |
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> |
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> |
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> |
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> |
Tags
A map of tags to assign to the resource.
Declaration
public InputMap<object> Tags { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.Object> |
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> |