Interface EnumTypeOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
EnumTypeOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:49.495Z") @Stability(Experimental) public interface EnumTypeOptions extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for configuring an Enum Type.

Example:

 GraphqlApi api;
 EnumType episode = EnumType.Builder.create("Episode")
         .definition(List.of("NEWHOPE", "EMPIRE", "JEDI"))
         .build();
 api.addType(episode);