Interface CfnAPIKey.ApiKeyRestrictionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAPIKey.ApiKeyRestrictionsProperty.Jsii$Proxy
Enclosing class:
CfnAPIKey

@Stability(Stable) public static interface CfnAPIKey.ApiKeyRestrictionsProperty extends software.amazon.jsii.JsiiSerializable
API Restrictions on the allowed actions, resources, and referers for an API key resource.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.location.*;
 ApiKeyRestrictionsProperty apiKeyRestrictionsProperty = ApiKeyRestrictionsProperty.builder()
         .allowActions(List.of("allowActions"))
         .allowResources(List.of("allowResources"))
         // the properties below are optional
         .allowReferers(List.of("allowReferers"))
         .build();
 

See Also: