interface OAuthClientDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnServicePropsMixin.OAuthClientDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnServicePropsMixin_OAuthClientDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnServicePropsMixin.OAuthClientDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnServicePropsMixin.OAuthClientDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnServicePropsMixin » OAuthClientDetailsProperty |
OAuth client credentials.
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';
declare const exchangeParameters: any;
const oAuthClientDetailsProperty: devopsagent.CfnServicePropsMixin.OAuthClientDetailsProperty = {
clientId: 'clientId',
clientName: 'clientName',
clientSecret: 'clientSecret',
exchangeParameters: exchangeParameters,
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | OAuth client ID. |
| client | string | User friendly OAuth client name. |
| client | string | OAuth client secret. |
| exchange | any | OAuth token exchange parameters. |
clientId?
Type:
string
(optional)
OAuth client ID.
clientName?
Type:
string
(optional)
User friendly OAuth client name.
clientSecret?
Type:
string
(optional)
OAuth client secret.
exchangeParameters?
Type:
any
(optional)
OAuth token exchange parameters.

.NET
Go
Java
Python
TypeScript