EventConnectionAuthParameters constructor
- Input<
EventConnectionAuthParametersApiKey?> ? apiKey, - Input<
EventConnectionAuthParametersBasic?> ? basic, - Input<
EventConnectionAuthParametersConnectivityParameters?> ? connectivityParameters, - Input<
EventConnectionAuthParametersInvocationHttpParameters?> ? invocationHttpParameters, - Input<
EventConnectionAuthParametersOauth?> ? oauth,
Creates a new EventConnectionAuthParameters.
apiKey Parameters used for API_KEY authorization. An API key to include in the header for each authentication request. A maximum of 1 are allowed. Conflicts with basic and oauth. Documented below.
basic Parameters used for BASIC authorization. A maximum of 1 are allowed. Conflicts with apiKey and oauth. Documented below.
connectivityParameters Parameters used for oauth with private API. Documented below.
invocationHttpParameters Invocation Http Parameters are additional credentials used to sign each Invocation of the ApiDestination created from this Connection. If the ApiDestination Rule Target has additional HttpParameters, the values will be merged together, with the Connection Invocation Http Parameters taking precedence. Secret values are stored and managed by AWS Secrets Manager. A maximum of 1 are allowed. Documented below.
oauth Parameters used for OAUTH_CLIENT_CREDENTIALS authorization. A maximum of 1 are allowed. Conflicts with basic and apiKey. Documented below.
Implementation
const EventConnectionAuthParameters({
this.apiKey,
this.basic,
this.connectivityParameters,
this.invocationHttpParameters,
this.oauth,
});