Skip to content

Bedrock Agentcore Control  >  Operations  >  delete_harness_endpoint

delete_harness_endpoint

Operation

delete_harness_endpoint async

delete_harness_endpoint(input: DeleteHarnessEndpointInput, plugins: list[Plugin] | None = None) -> DeleteHarnessEndpointOutput

Operation to delete a harness endpoint.

Parameters:

Name Type Description Default
input DeleteHarnessEndpointInput

An instance of DeleteHarnessEndpointInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
DeleteHarnessEndpointOutput

An instance of DeleteHarnessEndpointOutput.

Input

DeleteHarnessEndpointInput dataclass

Dataclass for DeleteHarnessEndpointInput structure.

Attributes

client_token class-attribute instance-attribute
client_token: str | None = None

A unique, case-sensitive identifier to ensure idempotency of the request.

endpoint_name class-attribute instance-attribute
endpoint_name: str | None = None

The name of the endpoint to delete.

harness_id class-attribute instance-attribute
harness_id: str | None = None

The ID of the harness that the endpoint belongs to.

Output

DeleteHarnessEndpointOutput dataclass

Dataclass for DeleteHarnessEndpointOutput structure.

Attributes

endpoint instance-attribute
endpoint: HarnessEndpoint

The endpoint that was deleted.