interface CfnVPCEndpointConnectionNotificationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnVPCEndpointConnectionNotificationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnVPCEndpointConnectionNotificationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnVPCEndpointConnectionNotificationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnVPCEndpointConnectionNotificationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnVPCEndpointConnectionNotificationMixinProps |
Properties for CfnVPCEndpointConnectionNotificationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnVPCEndpointConnectionNotificationMixinProps: ec2.CfnVPCEndpointConnectionNotificationMixinProps = {
connectionEvents: ['connectionEvents'],
connectionNotificationArn: 'connectionNotificationArn',
serviceId: 'serviceId',
vpcEndpointId: 'vpcEndpointId',
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string[] | The endpoint events for which to receive notifications. |
| connection | string | ITopic | The ARN of the SNS topic for the notifications. |
| service | string | IVPCEndpoint | The ID of the endpoint service. |
| vpc | string | The ID of the endpoint. |
connectionEvents?
Type:
string[]
(optional)
The endpoint events for which to receive notifications.
Valid values are Accept , Connect , Delete , and Reject .
connectionNotificationArn?
Type:
string | ITopic
(optional)
The ARN of the SNS topic for the notifications.
serviceId?
Type:
string | IVPCEndpoint
(optional)
The ID of the endpoint service.
vpcEndpointId?
Type:
string
(optional)
The ID of the endpoint.

.NET
Go
Java
Python
TypeScript