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: