Class CfnInferenceExperimentPropsMixin.CaptureContentTypeHeaderProperty
Configuration specifying how to treat different headers.
Inherited Members
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.
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.
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
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[]