interface CfnVPCEndpointConnectionNotificationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnVPCEndpointConnectionNotificationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnVPCEndpointConnectionNotificationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnVPCEndpointConnectionNotificationMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnVPCEndpointConnectionNotificationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnVPCEndpointConnectionNotificationMixinProps: ec2_mixins.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 | The ARN of the SNS topic for the notifications. |
| service | string | 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
(optional)
The ARN of the SNS topic for the notifications.
serviceId?
Type:
string
(optional)
The ID of the endpoint service.
vpcEndpointId?
Type:
string
(optional)
The ID of the endpoint.

.NET
Go
Java
Python
TypeScript