Show / Hide Table of Contents

Class CfnInferenceExperimentPropsMixin.ModelInfrastructureConfigProperty

The configuration for the infrastructure that the model will be deployed to.

Inheritance
object
CfnInferenceExperimentPropsMixin.ModelInfrastructureConfigProperty
Implements
CfnInferenceExperimentPropsMixin.IModelInfrastructureConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SageMaker
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnInferenceExperimentPropsMixin.ModelInfrastructureConfigProperty : CfnInferenceExperimentPropsMixin.IModelInfrastructureConfigProperty
Syntax (vb)
Public Class CfnInferenceExperimentPropsMixin.ModelInfrastructureConfigProperty Implements CfnInferenceExperimentPropsMixin.IModelInfrastructureConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferenceexperiment-modelinfrastructureconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.SageMaker;

             var modelInfrastructureConfigProperty = new ModelInfrastructureConfigProperty {
                 InfrastructureType = "infrastructureType",
                 RealTimeInferenceConfig = new RealTimeInferenceConfigProperty {
                     InstanceCount = 123,
                     InstanceType = "instanceType"
                 }
             };

Synopsis

Constructors

ModelInfrastructureConfigProperty()

The configuration for the infrastructure that the model will be deployed to.

Properties

InfrastructureType

The inference option to which to deploy your model. Possible values are the following:.

RealTimeInferenceConfig

The infrastructure configuration for deploying the model to real-time inference.

Constructors

ModelInfrastructureConfigProperty()

The configuration for the infrastructure that the model will be deployed to.

public ModelInfrastructureConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferenceexperiment-modelinfrastructureconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.SageMaker;

             var modelInfrastructureConfigProperty = new ModelInfrastructureConfigProperty {
                 InfrastructureType = "infrastructureType",
                 RealTimeInferenceConfig = new RealTimeInferenceConfigProperty {
                     InstanceCount = 123,
                     InstanceType = "instanceType"
                 }
             };

Properties

InfrastructureType

The inference option to which to deploy your model. Possible values are the following:.

public string? InfrastructureType { get; set; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferenceexperiment-modelinfrastructureconfig.html#cfn-sagemaker-inferenceexperiment-modelinfrastructureconfig-infrastructuretype

    RealTimeInferenceConfig

    The infrastructure configuration for deploying the model to real-time inference.

    public object? RealTimeInferenceConfig { get; set; }
    Property Value

    object

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferenceexperiment-modelinfrastructureconfig.html#cfn-sagemaker-inferenceexperiment-modelinfrastructureconfig-realtimeinferenceconfig

    Type union: either IResolvable or CfnInferenceExperimentPropsMixin.IRealTimeInferenceConfigProperty

    Implements

    CfnInferenceExperimentPropsMixin.IModelInfrastructureConfigProperty
    Back to top Generated by DocFX