Skip to content

Api Gateway  >  Operations  >  update_api_key

update_api_key

Operation

update_api_key async

update_api_key(input: UpdateApiKeyInput, plugins: list[Plugin] | None = None) -> UpdateApiKeyOutput

Changes information about an ApiKey resource.

Parameters:

Name Type Description Default
input UpdateApiKeyInput

An instance of UpdateApiKeyInput.

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
UpdateApiKeyOutput

An instance of UpdateApiKeyOutput.

Input

UpdateApiKeyInput dataclass

A request to change information about an ApiKey resource.

Attributes

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

The identifier of the ApiKey resource to be updated.

patch_operations class-attribute instance-attribute
patch_operations: list[PatchOperation] | None = None

For more information about supported patch operations, see Patch Operations.

Output

UpdateApiKeyOutput dataclass

A resource that can be distributed to callers for executing Method resources that require an API key. API keys can be mapped to any Stage on any RestApi, which indicates that the callers with the API key can make requests to that stage.

Attributes

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

The timestamp when the API Key was created.

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

An Amazon Web Services Marketplace customer identifier, when integrating with the Amazon Web Services SaaS Marketplace.

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

The description of the API Key.

enabled class-attribute instance-attribute
enabled: bool = False

Specifies whether the API Key can be used by callers.

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

The identifier of the API Key.

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

The timestamp when the API Key was last updated.

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

The name of the API Key.

stage_keys class-attribute instance-attribute
stage_keys: list[str] | None = None

A list of Stage resources that are associated with the ApiKey resource.

tags class-attribute instance-attribute
tags: dict[str, str] | None = None

The collection of tags. Each tag element is associated with a given resource.

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

The value of the API Key.