ApiKeyReference
- class aws_cdk.aws_apigateway.ApiKeyReference(*, api_key_id)
Bases:
object
A reference to a ApiKey resource.
- Parameters:
api_key_id (
str
) – The APIKeyId of the ApiKey resource.- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_apigateway as apigateway api_key_reference = apigateway.ApiKeyReference( api_key_id="apiKeyId" )
Attributes
- api_key_id
The APIKeyId of the ApiKey resource.