@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.374Z") @Stability(value=Stable) public interface CfnVPCEndpointConnectionNotificationProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ec2.*;
CfnVPCEndpointConnectionNotificationProps cfnVPCEndpointConnectionNotificationProps = CfnVPCEndpointConnectionNotificationProps.builder()
.connectionEvents(List.of("connectionEvents"))
.connectionNotificationArn("connectionNotificationArn")
// the properties below are optional
.serviceId("serviceId")
.vpcEndpointId("vpcEndpointId")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnVPCEndpointConnectionNotificationProps.Builder
A builder for
CfnVPCEndpointConnectionNotificationProps |
static class |
CfnVPCEndpointConnectionNotificationProps.Jsii$Proxy
An implementation for
CfnVPCEndpointConnectionNotificationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnVPCEndpointConnectionNotificationProps.Builder |
builder() |
List<String> |
getConnectionEvents()
One or more endpoint events for which to receive notifications.
|
String |
getConnectionNotificationArn()
The ARN of the SNS topic for the notifications.
|
default String |
getServiceId()
The ID of the endpoint service.
|
default String |
getVpcEndpointId()
The ID of the endpoint.
|
@Stability(value=Stable) @NotNull List<String> getConnectionEvents()
Valid values are Accept , Connect , Delete , and Reject .
@Stability(value=Stable) @NotNull String getConnectionNotificationArn()
@Stability(value=Stable) @Nullable default String getServiceId()
@Stability(value=Stable) @Nullable default String getVpcEndpointId()
@Stability(value=Stable) static CfnVPCEndpointConnectionNotificationProps.Builder builder()
Copyright © 2022. All rights reserved.