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());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forApplicationInferenceProfileAttributes
static final class
An 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
-