interface AdditionalInformationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelCardPropsMixin.AdditionalInformationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelCardPropsMixin_AdditionalInformationProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelCardPropsMixin.AdditionalInformationProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelCardPropsMixin.AdditionalInformationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelCardPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const additionalInformationProperty: sagemaker_mixins.CfnModelCardPropsMixin.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 | { [string]: string } | IResolvable | 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:
{ [string]: string } | IResolvable
(optional)
Any additional information to document about the model.
ethicalConsiderations?
Type:
string
(optional)
Any ethical considerations documented by the model card author.

.NET
Go
Java
Python
TypeScript