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

.NET
Go
Java
Python
TypeScript