Skip to content

Commit

Permalink
Merge pull request #238 from rsandell/getters
Browse files Browse the repository at this point in the history
Silence warnings for fields with no getters
  • Loading branch information
amuniz committed Mar 20, 2024
2 parents fa410de + 782ae27 commit 08a59f1
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,20 @@ public String getSecretKeyVariable() {
return secretKeyVariable;
}

@Nullable
public String getRoleArn() {
return roleArn;
}

@Nullable
public String getRoleSessionName() {
return roleSessionName;
}

public int getRoleSessionDurationSeconds() {
return roleSessionDurationSeconds;
}

@DataBoundSetter
public void setRoleArn(String roleArn) {
this.roleArn = roleArn;
Expand Down

0 comments on commit 08a59f1

Please sign in to comment.