ApiKeyReference
- class aws_cdk.aws_appsync.ApiKeyReference(*, api_key_arn, api_key_id)
Bases:
object
A reference to a ApiKey resource.
- Parameters:
api_key_arn (
str
) – The ARN of the ApiKey resource.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_appsync as appsync api_key_reference = appsync.ApiKeyReference( api_key_arn="apiKeyArn", api_key_id="apiKeyId" )
Attributes
- api_key_arn
The ARN of the ApiKey resource.
- api_key_id
The ApiKeyId of the ApiKey resource.