Interface AddApiKeyOptions

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

@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)", date="2023-10-26T00:56:03.622Z") @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