Show / Hide Table of Contents

Class CfnEndpointConfig.AsyncInferenceConfigProperty

Specifies configuration for how an endpoint performs asynchronous inference.

Inheritance
System.Object
CfnEndpointConfig.AsyncInferenceConfigProperty
Implements
CfnEndpointConfig.IAsyncInferenceConfigProperty
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.AWS.Sagemaker.dll
Syntax (csharp)
public class AsyncInferenceConfigProperty : Object, CfnEndpointConfig.IAsyncInferenceConfigProperty
Syntax (vb)
Public Class AsyncInferenceConfigProperty
    Inherits Object
    Implements CfnEndpointConfig.IAsyncInferenceConfigProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-asyncinferenceconfig.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.AWS.Sagemaker;

var asyncInferenceConfigProperty = new AsyncInferenceConfigProperty {
    OutputConfig = new AsyncInferenceOutputConfigProperty {
        KmsKeyId = "kmsKeyId",
        NotificationConfig = new AsyncInferenceNotificationConfigProperty {
            ErrorTopic = "errorTopic",
            IncludeInferenceResponseIn = new [] { "includeInferenceResponseIn" },
            SuccessTopic = "successTopic"
        },
        S3FailurePath = "s3FailurePath",
        S3OutputPath = "s3OutputPath"
    },

    // the properties below are optional
    ClientConfig = new AsyncInferenceClientConfigProperty {
        MaxConcurrentInvocationsPerInstance = 123
    }
};

Synopsis

Constructors

AsyncInferenceConfigProperty()

Properties

ClientConfig

Configures the behavior of the client used by SageMaker to interact with the model container during asynchronous inference.

OutputConfig

Specifies the configuration for asynchronous inference invocation outputs.

Constructors

AsyncInferenceConfigProperty()

public AsyncInferenceConfigProperty()

Properties

ClientConfig

Configures the behavior of the client used by SageMaker to interact with the model container during asynchronous inference.

public object ClientConfig { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-asyncinferenceconfig.html#cfn-sagemaker-endpointconfig-asyncinferenceconfig-clientconfig

OutputConfig

Specifies the configuration for asynchronous inference invocation outputs.

public object OutputConfig { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-asyncinferenceconfig.html#cfn-sagemaker-endpointconfig-asyncinferenceconfig-outputconfig

Implements

CfnEndpointConfig.IAsyncInferenceConfigProperty
Back to top Generated by DocFX