samcli/hook_packages/terraform/hooks/prepare/resource_linking.py [1747:1763]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    )
    resource_linking_pair = ResourceLinkingPair(
        source_resource_cfn_resource=authorizer_cfn_resources,
        source_resource_tf_config=authorizer_config_resources,
        destination_resource_tf=lamda_function_resources,
        expected_destinations=[
            ResourcePairExceptedDestination(
                terraform_resource_type_prefix=LAMBDA_FUNCTION_RESOURCE_ADDRESS_PREFIX,
                terraform_attribute_name="invoke_arn",
            ),
        ],
        terraform_link_field_name="authorizer_uri",
        cfn_link_field_name="AuthorizerUri",
        cfn_resource_update_call_back_function=_link_gateway_authorizer_to_lambda_function_call_back,
        linking_exceptions=exceptions,
    )
    ResourceLinker(resource_linking_pair).link_resources()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



samcli/hook_packages/terraform/hooks/prepare/resource_linking.py [2196:2212]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    )
    resource_linking_pair = ResourceLinkingPair(
        source_resource_cfn_resource=authorizer_cfn_resources,
        source_resource_tf_config=authorizer_config_resources,
        destination_resource_tf=lamda_function_resources,
        expected_destinations=[
            ResourcePairExceptedDestination(
                terraform_resource_type_prefix=LAMBDA_FUNCTION_RESOURCE_ADDRESS_PREFIX,
                terraform_attribute_name="invoke_arn",
            ),
        ],
        terraform_link_field_name="authorizer_uri",
        cfn_link_field_name="AuthorizerUri",
        cfn_resource_update_call_back_function=_link_gateway_authorizer_to_lambda_function_call_back,
        linking_exceptions=exceptions,
    )
    ResourceLinker(resource_linking_pair).link_resources()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



