Interface CfnAlgorithmPropsMixin.ChannelSpecificationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAlgorithmPropsMixin.ChannelSpecificationProperty.Jsii$Proxy
Enclosing class:
CfnAlgorithmPropsMixin

@Stability(Stable) public static interface CfnAlgorithmPropsMixin.ChannelSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
 ChannelSpecificationProperty channelSpecificationProperty = ChannelSpecificationProperty.builder()
         .description("description")
         .isRequired(false)
         .name("name")
         .supportedCompressionTypes(List.of("supportedCompressionTypes"))
         .supportedContentTypes(List.of("supportedContentTypes"))
         .supportedInputModes(List.of("supportedInputModes"))
         .build();
 

See Also: