EventConnectionAuthParametersOauthClientParameters constructor

const EventConnectionAuthParametersOauthClientParameters({
  1. required Input<String> clientId,
  2. required Input<String> clientSecret,
})

Creates a new EventConnectionAuthParametersOauthClientParameters. clientId The client ID for the credentials to use for authorization. Created and stored in AWS Secrets Manager. clientSecret The client secret for the credentials to use for authorization. Created and stored in AWS Secrets Manager.

Implementation

const EventConnectionAuthParametersOauthClientParameters({
  required this.clientId,
  required this.clientSecret,
});