Interface CfnConnectorProfile.ApiKeyCredentialsProperty

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

@Stability(Stable) public static interface CfnConnectorProfile.ApiKeyCredentialsProperty extends software.amazon.jsii.JsiiSerializable
The API key credentials required for API key authentication.

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.appflow.*;
 ApiKeyCredentialsProperty apiKeyCredentialsProperty = ApiKeyCredentialsProperty.builder()
         .apiKey("apiKey")
         // the properties below are optional
         .apiSecretKey("apiSecretKey")
         .build();
 

See Also: