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