interface AdditionalInformationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelCardPropsMixin.AdditionalInformationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelCardPropsMixin_AdditionalInformationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelCardPropsMixin.AdditionalInformationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelCardPropsMixin.AdditionalInformationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const additionalInformationProperty: sagemaker.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