interface ChannelSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnAlgorithmPropsMixin.ChannelSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnAlgorithmPropsMixin_ChannelSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnAlgorithmPropsMixin.ChannelSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnAlgorithmPropsMixin.ChannelSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnAlgorithmPropsMixin » 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/cfn-property-mixins';
const channelSpecificationProperty: sagemaker.CfnAlgorithmPropsMixin.ChannelSpecificationProperty = {
description: 'description',
isRequired: false,
name: 'name',
supportedCompressionTypes: ['supportedCompressionTypes'],
supportedContentTypes: ['supportedContentTypes'],
supportedInputModes: ['supportedInputModes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | |
| is | boolean | IResolvable | |
| name? | string | |
| supported | string[] | |
| supported | string[] | |
| supported | string[] |
description?
Type:
string
(optional)
isRequired?
Type:
boolean | IResolvable
(optional)
name?
Type:
string
(optional)
supportedCompressionTypes?
Type:
string[]
(optional)
supportedContentTypes?
Type:
string[]
(optional)
supportedInputModes?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript