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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectorProfile.ApiKeyCredentialsPropertystatic final classAn implementation forCfnConnectorProfile.ApiKeyCredentialsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiKey
The API key required for API key authentication.- See Also:
-
getApiSecretKey
The API secret key required for API key authentication.- See Also:
-
builder
-