interface CfnApplicationInferenceProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnApplicationInferenceProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnApplicationInferenceProfileMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnApplicationInferenceProfileMixinProps |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnApplicationInferenceProfileMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnApplicationInferenceProfileMixinProps |
Properties for CfnApplicationInferenceProfilePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const cfnApplicationInferenceProfileMixinProps: bedrock_mixins.CfnApplicationInferenceProfileMixinProps = {
description: 'description',
inferenceProfileName: 'inferenceProfileName',
modelSource: {
copyFrom: 'copyFrom',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the inference profile. |
| inference | string | The name of the inference profile. |
| model | IResolvable | Inference | Contains configurations for the inference profile to copy as the resource. |
| tags? | Cfn[] | A list of tags associated with the inference profile. |
description?
Type:
string
(optional)
The description of the inference profile.
inferenceProfileName?
Type:
string
(optional)
The name of the inference profile.
modelSource?
Type:
IResolvable | Inference
(optional)
Contains configurations for the inference profile to copy as the resource.
tags?
Type:
Cfn[]
(optional)
A list of tags associated with the inference profile.

.NET
Go
Java
Python
TypeScript