I create CloudFormation yaml template and I need to use !GetAtt \"TestLambda.Arn\" as part of !Sub function in \"AWS::ApiGateway::Method\" Integrat
!GetAtt \"TestLambda.Arn\"
!Sub
We can use Fn:: for the nested intrinsic functions if using the ! short form first. So
Fn::
!
!Sub "arn:aws:apigateway:us-east-1:lambda:path/2015-03-31/functions/$(Fn::GetAtt:[TestLambda, Arn])/invocations"