Interface AddApiKeyOptions

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:11.749Z") @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