I have smithy structure containing some non-required member, and I want to make them as Optional
type in Java. Is there a way to do that? For example, in structures.smithy
structure item {
@required
id: String
name: String
}
In item.java, I want
String id;
Optional<String> name;
Thank you!