interface ApplicationInferenceProfileAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Alpha.ApplicationInferenceProfileAttributes |
Go | github.com/aws/aws-cdk-go/awsbedrockalpha/v2#ApplicationInferenceProfileAttributes |
Java | software.amazon.awscdk.services.bedrock.alpha.ApplicationInferenceProfileAttributes |
Python | aws_cdk.aws_bedrock_alpha.ApplicationInferenceProfileAttributes |
TypeScript (source) | @aws-cdk/aws-bedrock-alpha » ApplicationInferenceProfileAttributes |
Attributes for specifying an imported Application Inference Profile.
Example
// Import an inference profile through attributes
const importedProfile = bedrock.ApplicationInferenceProfile.fromApplicationInferenceProfileAttributes(
this,
'ImportedProfile',
{
inferenceProfileArn: 'arn:aws:bedrock:us-east-1:123456789012:application-inference-profile/my-profile-id',
inferenceProfileIdentifier: 'my-profile-id',
}
);
Properties
| Name | Type | Description |
|---|---|---|
| inference | string | The ARN of the application inference profile. |
| inference | string | The ID or Amazon Resource Name (ARN) of the inference profile. |
inferenceProfileArn
Type:
string
The ARN of the application inference profile.
inferenceProfileIdentifier
Type:
string
The ID or Amazon Resource Name (ARN) of the inference profile.
This can be either the profile ID or the full ARN.

.NET
Go
Java
Python
TypeScript (