VpcEndpointConnectionNotificationArgs constructor

const VpcEndpointConnectionNotificationArgs({
  1. required Input<List<String>> connectionEvents,
  2. required Input<String> connectionNotificationArn,
  3. Input<String?>? region,
  4. Input<String?>? vpcEndpointId,
  5. Input<String?>? vpcEndpointServiceId,
})

Creates a new VpcEndpointConnectionNotificationArgs. connectionEvents One or more endpoint events for which to receive notifications. connectionNotificationArn The ARN of the SNS topic for the notifications. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. vpcEndpointId The ID of the VPC Endpoint to receive notifications for. vpcEndpointServiceId The ID of the VPC Endpoint Service to receive notifications for.

Implementation

const VpcEndpointConnectionNotificationArgs({
  required this.connectionEvents,
  required this.connectionNotificationArn,
  this.region,
  this.vpcEndpointId,
  this.vpcEndpointServiceId,
});