interface ApplicationInferenceProfileAttributes
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Bedrock.Alpha.ApplicationInferenceProfileAttributes |
![]() | github.com/aws/aws-cdk-go/awsbedrockalpha/v2#ApplicationInferenceProfileAttributes |
![]() | software.amazon.awscdk.services.bedrock.alpha.ApplicationInferenceProfileAttributes |
![]() | aws_cdk.aws_bedrock_alpha.ApplicationInferenceProfileAttributes |
![]() | @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.