aws-cdk-lib.aws_events.CfnConnection.ClientParametersProperty

interface ClientParametersProperty

LanguageType name
.NETAmazon.CDK.AWS.Events.CfnConnection.ClientParametersProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsevents#CfnConnection_ClientParametersProperty
Javasoftware.amazon.awscdk.services.events.CfnConnection.ClientParametersProperty
Pythonaws_cdk.aws_events.CfnConnection.ClientParametersProperty
TypeScript aws-cdk-lib » aws_events » CfnConnection » ClientParametersProperty

Contains the OAuth authorization parameters to use for the connection.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_events as events } from 'aws-cdk-lib';
const clientParametersProperty: events.CfnConnection.ClientParametersProperty = {
  clientId: 'clientId',
  clientSecret: 'clientSecret',
};

Properties

NameTypeDescription
clientIdstringThe client ID to use for OAuth authorization.
clientSecretstringThe client secret assciated with the client ID to use for OAuth authorization.

clientId

Type: string

The client ID to use for OAuth authorization.


clientSecret

Type: string

The client secret assciated with the client ID to use for OAuth authorization.