ConnectionFunctionReference
- class aws_cdk.interfaces.aws_cloudfront.ConnectionFunctionReference(*, connection_function_arn, connection_function_id)
Bases:
objectA reference to a ConnectionFunction resource.
- Parameters:
connection_function_arn (
str) – The ARN of the ConnectionFunction resource.connection_function_id (
str) – The Id of the ConnectionFunction 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_cloudfront as interfaces_cloudfront connection_function_reference = interfaces_cloudfront.ConnectionFunctionReference( connection_function_arn="connectionFunctionArn", connection_function_id="connectionFunctionId" )
Attributes
- connection_function_arn
The ARN of the ConnectionFunction resource.
- connection_function_id
The Id of the ConnectionFunction resource.