Skip to content

Commit

Permalink
Remove unused label
Browse files Browse the repository at this point in the history
  • Loading branch information
deepanjan90 committed Feb 22, 2024
1 parent 2f9a76f commit 4ddc43a
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/main/java/gyro/aws/wafv2/LabelMatchStatementResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ public class LabelMatchStatementResource extends Diffable implements Copyable<La

private LabelMatchScope scope;
private String key;
private String label;

/**
* The part of the web request that you want AWS WAF to inspect.
Expand All @@ -54,18 +53,6 @@ public void setKey(String key) {
this.key = key;
}

/**
* The label that you want AWS WAF to search for.
*/
@Required
public String getLabel() {
return label;
}

public void setLabel(String label) {
this.label = label;
}

@Override
public String primaryKey() {
return String.format("label match statement - '%s'", getScope());
Expand Down

0 comments on commit 4ddc43a

Please sign in to comment.