Can't add Proxy with ApiGateway to my Lambda Function

Hello,
i’m trying to add proxy to my lambda function, but i’m getting error:
“CREATE_FAILED: ApiGatewayResourceJokes (AWS::ApiGateway::Resource)
Resource handler returned message: “Another resource with the same parent already has this name: example (Service: ApiGateway, Status Code: 409, Request ID: 3fb2a85c-6fd2-4414-ad3f-72ee095da48b)” (RequestToken: f33a6da3-be94-9696-3fd6-35a7bc52ef0a, HandlerErrorCode: AlreadyExists)”

example:
    handler: lambdas/endpoints/proxy.handler
    events:
      - http: GET /example
ProxyResource:
      Type: AWS::ApiGateway::Resource
      Properties:
        ParentId:
          Fn::GetAtt:
            - ApiGatewayRestApi # our default Rest API logical ID
            - RootResourceId
        PathPart: jokes # the endpoint in your API that is set as proxy
        RestApiId:
          Ref: ApiGatewayRestApi
    ProxyMethod:
      Type: AWS::ApiGateway::Method
      Properties:
        ResourceId:
          Ref: ProxyResource
        RestApiId:
          Ref: ApiGatewayRestApi
        HttpMethod: GET # the method of your proxy. Is it GET or POST or ... ?
        MethodResponses:
          - StatusCode: 200
        Integration:
          IntegrationHttpMethod: POST
          Type: HTTP
          Uri: http://api.icndb.com/jokes/random # the URL you want to set a proxy to
          IntegrationResponses:
            - StatusCode: 200