Skip to content

Bedrock  >  Structures  >  InferenceProfileSummary

InferenceProfileSummary

Structure Class

InferenceProfileSummary dataclass

Contains information about an inference profile.

Attributes

created_at class-attribute instance-attribute
created_at: datetime | None = None

The time at which the inference profile was created.

description class-attribute instance-attribute
description: str | None = field(repr=False, default=None)

The description of the inference profile.

inference_profile_arn instance-attribute
inference_profile_arn: str

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

inference_profile_id instance-attribute
inference_profile_id: str

The unique identifier of the inference profile.

inference_profile_name instance-attribute
inference_profile_name: str

The name of the inference profile.

models instance-attribute
models: list[InferenceProfileModel]

A list of information about each model in the inference profile.

status instance-attribute

The status of the inference profile. ACTIVE means that the inference profile is ready to be used.

type instance-attribute

The type of the inference profile. The following types are possible:

  • SYSTEM_DEFINED -- The inference profile is defined by Amazon Bedrock. You can route inference requests across regions with these inference profiles.

  • APPLICATION -- The inference profile was created by a user. This type of inference profile can track metrics and costs when invoking the model in it. The inference profile may route requests to one or multiple regions.

updated_at class-attribute instance-attribute
updated_at: datetime | None = None

The time at which the inference profile was last updated.