CfnVPCEndpointConnectionNotificationMixinProps
- class aws_cdk.cfn_property_mixins.aws_ec2.CfnVPCEndpointConnectionNotificationMixinProps(*, connection_events=None, connection_notification_arn=None, service_id=None, vpc_endpoint_id=None)
Bases:
objectProperties for CfnVPCEndpointConnectionNotificationPropsMixin.
- Parameters:
connection_events (
Optional[Sequence[str]]) – The endpoint events for which to receive notifications. Valid values areAccept,Connect,Delete, andReject.connection_notification_arn (
Union[str,ITopicRef,None]) – The ARN of the SNS topic for the notifications.service_id (
Union[str,IVPCEndpointServiceRef,None]) – The ID of the endpoint service.vpc_endpoint_id (
Optional[str]) – The ID of the endpoint.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_ec2 as ec2 cfn_vPCEndpoint_connection_notification_mixin_props = ec2.CfnVPCEndpointConnectionNotificationMixinProps( connection_events=["connectionEvents"], connection_notification_arn="connectionNotificationArn", service_id="serviceId", vpc_endpoint_id="vpcEndpointId" )
Attributes
- connection_events
The endpoint events for which to receive notifications.
Valid values are
Accept,Connect,Delete, andReject.
- connection_notification_arn
The ARN of the SNS topic for the notifications.
- service_id
The ID of the endpoint service.
- vpc_endpoint_id
The ID of the endpoint.