Skip to content

Commit

Permalink
Adding missing getters to ResourceSchema (#2486)
Browse files Browse the repository at this point in the history
  • Loading branch information
yasmewad authored Dec 13, 2024
1 parent 1fdb522 commit d75650d
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,10 @@ public Map<String, Property> getProperties() {
return properties;
}

public Set<String> getRequired() {
return required;
}

public Set<String> getReadOnlyProperties() {
return readOnlyProperties;
}
Expand Down Expand Up @@ -235,6 +239,10 @@ public Tagging getTagging() {
return tagging;
}

public Schema getAdditionalProperties() {
return additionalProperties;
}

public static final class Builder implements SmithyBuilder<ResourceSchema> {
private String typeName;
private String description;
Expand Down

0 comments on commit d75650d

Please sign in to comment.