ApplicationInferenceProfileAttributes

class aws_cdk.aws_bedrock_alpha.ApplicationInferenceProfileAttributes(*, inference_profile_arn, inference_profile_identifier)

Bases: object

(experimental) Attributes for specifying an imported Application Inference Profile.

Parameters:
  • inference_profile_arn (str) – (experimental) The ARN of the application inference profile.

  • inference_profile_identifier (str) – (experimental) The ID or Amazon Resource Name (ARN) of the inference profile. This can be either the profile ID or the full ARN.

Stability:

experimental

ExampleMetadata:

fixture=default infused

Example:

# Import an inference profile through attributes
imported_profile = bedrock.ApplicationInferenceProfile.from_application_inference_profile_attributes(self, "ImportedProfile",
    inference_profile_arn="arn:aws:bedrock:us-east-1:123456789012:application-inference-profile/my-profile-id",
    inference_profile_identifier="my-profile-id"
)

Attributes

inference_profile_arn

(experimental) The ARN of the application inference profile.

Stability:

experimental

Attribute:

true

inference_profile_identifier

(experimental) The ID or Amazon Resource Name (ARN) of the inference profile.

This can be either the profile ID or the full ARN.

Stability:

experimental

Attribute:

true