ApiKeyReference
- class aws_cdk.interfaces.aws_appsync.ApiKeyReference(*, api_key_arn, api_key_id)
Bases:
objectA 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.interfaces import aws_appsync as interfaces_aws_appsync api_key_reference = interfaces_aws_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.