Interface CfnService.BearerTokenDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.BearerTokenDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.BearerTokenDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Bearer token 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.*;
BearerTokenDetailsProperty bearerTokenDetailsProperty = BearerTokenDetailsProperty.builder()
.tokenName("tokenName")
.tokenValue("tokenValue")
// the properties below are optional
.authorizationHeader("authorizationHeader")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.BearerTokenDetailsPropertystatic final classAn implementation forCfnService.BearerTokenDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTokenName
User friendly bearer token name.- See Also:
-
getTokenValue
Bearer token value.- See Also:
-
getAuthorizationHeader
HTTP header name to send the bearer token.Default: - "Authorization"
- See Also:
-
builder
-