Interface ApiKeyConfig

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:49.351Z") @Stability(Experimental) public interface ApiKeyConfig extends software.amazon.jsii.JsiiSerializable
(experimental) Configuration for API Key authorization in AppSync.

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.appsync.*;
 import software.amazon.awscdk.core.*;
 Expiration expiration;
 ApiKeyConfig apiKeyConfig = ApiKeyConfig.builder()
         .description("description")
         .expires(expiration)
         .name("name")
         .build();
 
  • Method Details

    • getDescription

      @Stability(Experimental) @Nullable default String getDescription()
      (experimental) Description of API key.

      Default: - 'Default API Key created by CDK'

    • getExpires

      @Stability(Experimental) @Nullable default Expiration getExpires()
      (experimental) The time from creation time after which the API key expires.

      It must be a minimum of 1 day and a maximum of 365 days from date of creation. Rounded down to the nearest hour.

      Default: - 7 days rounded down to nearest hour

    • getName

      @Stability(Experimental) @Nullable default String getName()
      (experimental) Unique name of the API Key.

      Default: - 'DefaultAPIKey'

    • builder

      @Stability(Experimental) static ApiKeyConfig.Builder builder()
      Returns:
      a ApiKeyConfig.Builder of ApiKeyConfig