interface ModelInvocationJobReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Bedrock.ModelInvocationJobReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbedrock#ModelInvocationJobReference |
Java | software.amazon.awscdk.interfaces.bedrock.ModelInvocationJobReference |
Python | aws_cdk.interfaces.aws_bedrock.ModelInvocationJobReference |
TypeScript | aws-cdk-lib » interfaces » aws_bedrock » ModelInvocationJobReference |
A reference to a ModelInvocationJob resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as interfaces_bedrock } from 'aws-cdk-lib/interfaces';
const modelInvocationJobReference: interfaces_bedrock.ModelInvocationJobReference = {
jobArn: 'jobArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| job | string | The JobArn of the ModelInvocationJob resource. |
jobArn
Type:
string
The JobArn of the ModelInvocationJob resource.

.NET
Go
Java
Python
TypeScript