Interface CfnModelCard.AdditionalInformationProperty

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

@Stability(Stable) public static interface CfnModelCard.AdditionalInformationProperty extends software.amazon.jsii.JsiiSerializable
Additional information about the model.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 AdditionalInformationProperty additionalInformationProperty = AdditionalInformationProperty.builder()
         .caveatsAndRecommendations("caveatsAndRecommendations")
         .customDetails(Map.of(
                 "customDetailsKey", "customDetails"))
         .ethicalConsiderations("ethicalConsiderations")
         .build();
 

See Also: