EventConnectionAuthParametersBasic constructor

const EventConnectionAuthParametersBasic({
  1. required Input<String> password,
  2. required Input<String> username,
})

Creates a new EventConnectionAuthParametersBasic. password A password for the authorization. Created and stored in AWS Secrets Manager. username A username for the authorization.

Implementation

const EventConnectionAuthParametersBasic({
  required this.password,
  required this.username,
});