Show / Hide Table of Contents

Class CfnInferenceExperimentPropsMixin.CaptureContentTypeHeaderProperty

Configuration specifying how to treat different headers.

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

If no headers are specified Amazon SageMaker AI will by default base64 encode when capturing the data.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferenceexperiment-capturecontenttypeheader.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.Mixins.Preview.AWS.SageMaker.Mixins;

             var captureContentTypeHeaderProperty = new CaptureContentTypeHeaderProperty {
                 CsvContentTypes = new [] { "csvContentTypes" },
                 JsonContentTypes = new [] { "jsonContentTypes" }
             };

Synopsis

Constructors

CaptureContentTypeHeaderProperty()

Configuration specifying how to treat different headers.

Properties

CsvContentTypes

The list of all content type headers that Amazon SageMaker AI will treat as CSV and capture accordingly.

JsonContentTypes

The list of all content type headers that SageMaker AI will treat as JSON and capture accordingly.

Constructors

CaptureContentTypeHeaderProperty()

Configuration specifying how to treat different headers.

public CaptureContentTypeHeaderProperty()
Remarks

If no headers are specified Amazon SageMaker AI will by default base64 encode when capturing the data.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferenceexperiment-capturecontenttypeheader.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.Mixins.Preview.AWS.SageMaker.Mixins;

             var captureContentTypeHeaderProperty = new CaptureContentTypeHeaderProperty {
                 CsvContentTypes = new [] { "csvContentTypes" },
                 JsonContentTypes = new [] { "jsonContentTypes" }
             };

Properties

CsvContentTypes

The list of all content type headers that Amazon SageMaker AI will treat as CSV and capture accordingly.

public string[]? CsvContentTypes { get; set; }
Property Value

string[]

Remarks

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

JsonContentTypes

The list of all content type headers that SageMaker AI will treat as JSON and capture accordingly.

public string[]? JsonContentTypes { get; set; }
Property Value

string[]

Remarks

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

Implements

CfnInferenceExperimentPropsMixin.ICaptureContentTypeHeaderProperty
Back to top Generated by DocFX