GetEventConnectionArgs constructor

const GetEventConnectionArgs({
  1. required Input<String> name,
  2. Input<String?>? region,
})

Creates a new GetEventConnectionArgs. name Name of the connection. region Region where this resource will be managed. Defaults to the Region set in the provider configuration.

Implementation

const GetEventConnectionArgs({
  required this.name,
  this.region,
});