interface BearerTokenDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnService.BearerTokenDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnService_BearerTokenDetailsProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnService.BearerTokenDetailsProperty |
Python | aws_cdk.aws_devopsagent.CfnService.BearerTokenDetailsProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnService » BearerTokenDetailsProperty |
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 { aws_devopsagent as devopsagent } from 'aws-cdk-lib';
const bearerTokenDetailsProperty: devopsagent.CfnService.BearerTokenDetailsProperty = {
tokenName: 'tokenName',
tokenValue: 'tokenValue',
// the properties below are optional
authorizationHeader: 'authorizationHeader',
};
Properties
| Name | Type | Description |
|---|---|---|
| token | string | User friendly bearer token name. |
| token | string | Bearer token value. |
| authorization | string | HTTP header name to send the bearer token. |
tokenName
Type:
string
User friendly bearer token name.
tokenValue
Type:
string
Bearer token value.
authorizationHeader?
Type:
string
(optional, default: "Authorization")
HTTP header name to send the bearer token.

.NET
Go
Java
Python
TypeScript