Interface CfnVerifiedAccessEndpointProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVerifiedAccessEndpointProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.106.0 (build e852934)", date="2025-02-12T12:32:01.681Z") @Stability(Stable) public interface CfnVerifiedAccessEndpointProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnVerifiedAccessEndpoint.

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.*;
 CfnVerifiedAccessEndpointProps cfnVerifiedAccessEndpointProps = CfnVerifiedAccessEndpointProps.builder()
         .attachmentType("attachmentType")
         .endpointType("endpointType")
         .verifiedAccessGroupId("verifiedAccessGroupId")
         // the properties below are optional
         .applicationDomain("applicationDomain")
         .cidrOptions(CidrOptionsProperty.builder()
                 .cidr("cidr")
                 .portRanges(List.of(PortRangeProperty.builder()
                         .fromPort(123)
                         .toPort(123)
                         .build()))
                 .protocol("protocol")
                 .subnetIds(List.of("subnetIds"))
                 .build())
         .description("description")
         .domainCertificateArn("domainCertificateArn")
         .endpointDomainPrefix("endpointDomainPrefix")
         .loadBalancerOptions(LoadBalancerOptionsProperty.builder()
                 .loadBalancerArn("loadBalancerArn")
                 .port(123)
                 .portRanges(List.of(PortRangeProperty.builder()
                         .fromPort(123)
                         .toPort(123)
                         .build()))
                 .protocol("protocol")
                 .subnetIds(List.of("subnetIds"))
                 .build())
         .networkInterfaceOptions(NetworkInterfaceOptionsProperty.builder()
                 .networkInterfaceId("networkInterfaceId")
                 .port(123)
                 .portRanges(List.of(PortRangeProperty.builder()
                         .fromPort(123)
                         .toPort(123)
                         .build()))
                 .protocol("protocol")
                 .build())
         .policyDocument("policyDocument")
         .policyEnabled(false)
         .rdsOptions(RdsOptionsProperty.builder()
                 .port(123)
                 .protocol("protocol")
                 .rdsDbClusterArn("rdsDbClusterArn")
                 .rdsDbInstanceArn("rdsDbInstanceArn")
                 .rdsDbProxyArn("rdsDbProxyArn")
                 .rdsEndpoint("rdsEndpoint")
                 .subnetIds(List.of("subnetIds"))
                 .build())
         .securityGroupIds(List.of("securityGroupIds"))
         .sseSpecification(SseSpecificationProperty.builder()
                 .customerManagedKeyEnabled(false)
                 .kmsKeyArn("kmsKeyArn")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: