Interface ApplicationInferenceProfileAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ApplicationInferenceProfileAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:41:04.451Z")
@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());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forApplicationInferenceProfileAttributesstatic final classAn implementation forApplicationInferenceProfileAttributes -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) The ARN of the application inference profile.(experimental) The ID or Amazon Resource Name (ARN) of the inference profile.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInferenceProfileArn
(experimental) The ARN of the application inference profile. -
getInferenceProfileIdentifier
(experimental) The ID or Amazon Resource Name (ARN) of the inference profile.This can be either the profile ID or the full ARN.
-
builder
-