Interface CfnService.ApiKeyDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.ApiKeyDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.ApiKeyDetailsProperty
extends software.amazon.jsii.JsiiSerializable
API key authentication details.
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.devopsagent.*;
ApiKeyDetailsProperty apiKeyDetailsProperty = ApiKeyDetailsProperty.builder()
.apiKeyHeader("apiKeyHeader")
.apiKeyName("apiKeyName")
.apiKeyValue("apiKeyValue")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.ApiKeyDetailsPropertystatic final classAn implementation forCfnService.ApiKeyDetailsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()HTTP header name to send the API key.User friendly API key name.API key value.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiKeyHeader
HTTP header name to send the API key.- See Also:
-
getApiKeyName
User friendly API key name.- See Also:
-
getApiKeyValue
API key value.- See Also:
-
builder
-