Skip to content

Bedrock Agentcore Control  >  Enums  >  CapacityProviderStatus

CapacityProviderStatus

Enum Class

CapacityProviderStatus

Bases: UnknownEnumMixin, StrEnum

The status of a capacity provider. Possible values:

  • CREATING -- The service is creating the capacity provider and validating its configuration.

  • CREATE_FAILED -- The service could not create the capacity provider. For details, see statusCode and statusReason.

  • UPDATING -- The service is updating the capacity provider.

  • UPDATE_FAILED -- The service could not update the capacity provider. For details, see statusCode and statusReason.

  • READY -- The capacity provider is available for use.

  • DELETING -- The service is deleting the capacity provider.

  • DELETE_FAILED -- The service could not delete the capacity provider. You can retry the deletion.

Attributes

CREATE_FAILED class-attribute instance-attribute
CREATE_FAILED = 'CREATE_FAILED'
CREATING class-attribute instance-attribute
CREATING = 'CREATING'
DELETE_FAILED class-attribute instance-attribute
DELETE_FAILED = 'DELETE_FAILED'
DELETING class-attribute instance-attribute
DELETING = 'DELETING'
READY class-attribute instance-attribute
READY = 'READY'
UPDATE_FAILED class-attribute instance-attribute
UPDATE_FAILED = 'UPDATE_FAILED'
UPDATING class-attribute instance-attribute
UPDATING = 'UPDATING'