aws-codegurureviewer-repositoryassociation/src/main/java/software/amazon/codegurureviewer/repositoryassociation/CreateHandler.java [92:117]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return awsResponse;
    }


    /**
     * If your resource requires some form of stabilization (e.g. service does not provide strong consistency), you
     * will need to ensure that your code
     * accounts for any potential issues, so that a subsequent read/update requests will not cause any conflicts (e.g
     * . NotFoundException/InvalidRequestException)
     * for more information -> https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-test-contract.html
     *
     * @param awsRequest      the aws service request to create a resource
     * @param awsResponse     the aws service response to create a resource
     * @param proxyClient     the aws service client to make the call
     * @param model           resource model
     * @param callbackContext callback context
     * @return boolean state of stabilized or not
     */
    @Override
    protected boolean stabilizeOnHandle(
            final AwsRequest awsRequest,
            final AwsResponse awsResponse,
            final ProxyClient<CodeGuruReviewerClient> proxyClient,
            final ResourceModel model,
            final CallbackContext callbackContext) {
        boolean stabilized = false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-codegurureviewer-repositoryassociation/src/main/java/software/amazon/codegurureviewer/repositoryassociation/DeleteHandler.java [131:150]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return awsResponse;
    }

    /**
     * If deletion of your resource requires some form of stabilization (e.g. propagation delay)
     * for more information ->
     * https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-test-contract.html
     *
     * @param proxyClient the aws service client to make the call
     * @param model       resource model
     * @return boolean state of stabilized or not
     */
    @Override
    protected boolean stabilizeOnHandle(
            final AwsRequest awsRequest,
            final AwsResponse awsResponse,
            final ProxyClient<CodeGuruReviewerClient> proxyClient,
            final ResourceModel model,
            final CallbackContext callbackContext) {
        boolean stabilized = false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



