interface AdditionalInformationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelCard.AdditionalInformationProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModelCard.AdditionalInformationProperty |
Python | aws_cdk.aws_sagemaker.CfnModelCard.AdditionalInformationProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnModelCard » AdditionalInformationProperty |
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 * as sagemaker from '@aws-cdk/aws-sagemaker';
const additionalInformationProperty: sagemaker.CfnModelCard.AdditionalInformationProperty = {
caveatsAndRecommendations: 'caveatsAndRecommendations',
customDetails: {
customDetailsKey: 'customDetails',
},
ethicalConsiderations: 'ethicalConsiderations',
};
Properties
| Name | Type | Description |
|---|---|---|
| caveats | string | Caveats and recommendations for those who might use this model in their applications. |
| custom | IResolvable | { [string]: string } | Any additional information to document about the model. |
| ethical | string | Any ethical considerations documented by the model card author. |
caveatsAndRecommendations?
Type:
string
(optional)
Caveats and recommendations for those who might use this model in their applications.
customDetails?
Type:
IResolvable | { [string]: string }
(optional)
Any additional information to document about the model.
ethicalConsiderations?
Type:
string
(optional)
Any ethical considerations documented by the model card author.

.NET
Java
Python
TypeScript