public boolean equals()

in java11/event-bridge-gradle/{{cookiecutter.project_name}}/HelloWorldFunction/src/main/java/model/aws.ec2/AWSEvent.java [156:173]


    public boolean equals(java.lang.Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        AWSEvent awSEvent = (AWSEvent) o;
        return Objects.equals(this.detail, awSEvent.detail) &&
                Objects.equals(this.detailType, awSEvent.detailType) &&
                Objects.equals(this.resources, awSEvent.resources) &&
                Objects.equals(this.id, awSEvent.id) &&
                Objects.equals(this.source, awSEvent.source) &&
                Objects.equals(this.time, awSEvent.time) &&
                Objects.equals(this.region, awSEvent.region) &&
                Objects.equals(this.version, awSEvent.version) &&
                Objects.equals(this.account, awSEvent.account);
    }