Interface CfnConnection.ApiKeyAuthParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnection.ApiKeyAuthParametersProperty.Jsii$Proxy
- Enclosing class:
CfnConnection
@Stability(Stable)
public static interface CfnConnection.ApiKeyAuthParametersProperty
extends software.amazon.jsii.JsiiSerializable
Contains the API key authorization parameters for the connection.
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.events.*; ApiKeyAuthParametersProperty apiKeyAuthParametersProperty = ApiKeyAuthParametersProperty.builder() .apiKeyName("apiKeyName") .apiKeyValue("apiKeyValue") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnection.ApiKeyAuthParametersProperty
static final class
An implementation forCfnConnection.ApiKeyAuthParametersProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the API key to use for authorization.The value for the API key to use for authorization.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiKeyName
The name of the API key to use for authorization.- See Also:
-
getApiKeyValue
The value for the API key to use for authorization.- See Also:
-
builder
-