interface ChannelSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnAlgorithm.ChannelSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnAlgorithm_ChannelSpecificationProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnAlgorithm.ChannelSpecificationProperty |
Python | aws_cdk.aws_sagemaker.CfnAlgorithm.ChannelSpecificationProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnAlgorithm » ChannelSpecificationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const channelSpecificationProperty: sagemaker.CfnAlgorithm.ChannelSpecificationProperty = {
name: 'name',
supportedContentTypes: ['supportedContentTypes'],
supportedInputModes: ['supportedInputModes'],
// the properties below are optional
description: 'description',
isRequired: false,
supportedCompressionTypes: ['supportedCompressionTypes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| supported | string[] | |
| supported | string[] | |
| description? | string | |
| is | boolean | IResolvable | |
| supported | string[] |
name
Type:
string
supportedContentTypes
Type:
string[]
supportedInputModes
Type:
string[]
description?
Type:
string
(optional)
isRequired?
Type:
boolean | IResolvable
(optional)
supportedCompressionTypes?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript