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-09-02T11:25:25.515Z") @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