Class CfnApplicationInferenceProfile.InferenceProfileModelProperty
Contains information about a model.
Inherited Members
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationInferenceProfile.InferenceProfileModelProperty : CfnApplicationInferenceProfile.IInferenceProfileModelProperty
Syntax (vb)
Public Class CfnApplicationInferenceProfile.InferenceProfileModelProperty Implements CfnApplicationInferenceProfile.IInferenceProfileModelProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Bedrock;
var inferenceProfileModelProperty = new InferenceProfileModelProperty {
ModelArn = "modelArn"
};
Synopsis
Constructors
| InferenceProfileModelProperty() | Contains information about a model. |
Properties
| ModelArn | The Amazon Resource Name (ARN) of the model. |
Constructors
InferenceProfileModelProperty()
Contains information about a model.
public InferenceProfileModelProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Bedrock;
var inferenceProfileModelProperty = new InferenceProfileModelProperty {
ModelArn = "modelArn"
};
Properties
ModelArn
The Amazon Resource Name (ARN) of the model.
public string? ModelArn { get; set; }