Interface AddApiKeyOptions

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.688Z") @Stability(Stable) public interface AddApiKeyOptions extends software.amazon.jsii.JsiiSerializable
Options to the UsagePlan.addApiKey() method.

Example:

 UsagePlan usageplan;
 ApiKey apiKey;
 usageplan.addApiKey(apiKey, AddApiKeyOptions.builder()
         .overrideLogicalId("...")
         .build());
 
  • Method Details