interface BusinessDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelCardPropsMixin.BusinessDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelCardPropsMixin_BusinessDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelCardPropsMixin.BusinessDetailsProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelCardPropsMixin.BusinessDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelCardPropsMixin » BusinessDetailsProperty |
Information about how the model supports business goals.
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 businessDetailsProperty: sagemaker_mixins.CfnModelCardPropsMixin.BusinessDetailsProperty = {
businessProblem: 'businessProblem',
businessStakeholders: 'businessStakeholders',
lineOfBusiness: 'lineOfBusiness',
};
Properties
| Name | Type | Description |
|---|---|---|
| business | string | The specific business problem that the model is trying to solve. |
| business | string | The relevant stakeholders for the model. |
| line | string | The broader business need that the model is serving. |
businessProblem?
Type:
string
(optional)
The specific business problem that the model is trying to solve.
businessStakeholders?
Type:
string
(optional)
The relevant stakeholders for the model.
lineOfBusiness?
Type:
string
(optional)
The broader business need that the model is serving.

.NET
Go
Java
Python
TypeScript