CfnVPCEndpointConnectionNotificationMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.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 (
Optional[str]) – The ARN of the SNS topic for the notifications.service_id (
Optional[str]) – 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.mixins_preview.aws_ec2 import mixins as ec2_mixins cfn_vPCEndpoint_connection_notification_mixin_props = ec2_mixins.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.