Interface ApplicationInferenceProfileAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ApplicationInferenceProfileAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-08-06T18:14:48.037Z") @Stability(Experimental) public interface ApplicationInferenceProfileAttributes extends software.amazon.jsii.JsiiSerializable
(experimental) Attributes for specifying an imported Application Inference Profile.

Example:

 // Import an inference profile through attributes
 IInferenceProfile importedProfile = ApplicationInferenceProfile.fromApplicationInferenceProfileAttributes(this, "ImportedProfile", ApplicationInferenceProfileAttributes.builder()
         .inferenceProfileArn("arn:aws:bedrock:us-east-1:123456789012:application-inference-profile/my-profile-id")
         .inferenceProfileIdentifier("my-profile-id")
         .build());