VpcEndpointConnectionNotification constructor

VpcEndpointConnectionNotification(
  1. String name, {
  2. VpcEndpointConnectionNotificationArgs? args,
  3. CustomResourceOptions? options,
})

Creates a new VpcEndpointConnectionNotification. name The Pulumi resource name. args Arguments used to configure this VpcEndpointConnectionNotification. The set of arguments for VpcEndpointConnectionNotification. options Resource options controlling this resource's behavior.

Implementation

VpcEndpointConnectionNotification(
  String name, {
  VpcEndpointConnectionNotificationArgs? args,
  pulumi.CustomResourceOptions? options,
}) : super(
        'aws:ec2/vpcEndpointConnectionNotification:VpcEndpointConnectionNotification',
        name,
        pulumi.Input.mapToInputs(args?.toMap() ?? const {}),
        pulumi.CustomResourceOptions(version: '7.44.0').merge(options),
      ) {
  connectionEvents = registerOutput<List<String>>('connectionEvents', decoder: (raw) { final guardedValue = raw; if (guardedValue == null) return null; return (guardedValue as List).cast<String>(); });
  connectionNotificationArn = registerOutput<String>('connectionNotificationArn');
  notificationType = registerOutput<String>('notificationType');
  region = registerOutput<String>('region');
  state = registerOutput<String>('state');
  vpcEndpointId = registerOutput<String?>('vpcEndpointId');
  vpcEndpointServiceId = registerOutput<String?>('vpcEndpointServiceId');
}