Interface AddApiKeyOptions

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

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-08-27T16:10:17.101Z") @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("MyCustomLogicalId")
         .build());
 
  • Method Details