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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVerifiedAccessEndpointProps
static final class
An implementation forCfnVerifiedAccessEndpointProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The DNS name for users to reach your application.The type of attachment used to provide connectivity between the AWS Verified Access endpoint and the application.default Object
The options for a CIDR endpoint.default String
A description for the AWS Verified Access endpoint.default String
The ARN of a public TLS/SSL certificate imported into or created with ACM.default String
A custom identifier that is prepended to the DNS name that is generated for the endpoint.The type of AWS Verified Access endpoint.default Object
The load balancer details if creating the AWS Verified Access endpoint asload-balancer
type.default Object
The options for network-interface type endpoint.default String
The Verified Access policy document.default Object
The status of the Verified Access policy.default Object
The options for an RDS endpoint.The IDs of the security groups for the endpoint.default Object
The options for additional server side encryption.getTags()
The tags.The ID of the AWS Verified Access group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttachmentType
The type of attachment used to provide connectivity between the AWS Verified Access endpoint and the application.- See Also:
-
getEndpointType
The type of AWS Verified Access endpoint.Incoming application requests will be sent to an IP address, load balancer or a network interface depending on the endpoint type specified.
- See Also:
-
getVerifiedAccessGroupId
The ID of the AWS Verified Access group.- See Also:
-
getApplicationDomain
The DNS name for users to reach your application.- See Also:
-
getCidrOptions
The options for a CIDR endpoint.- See Also:
-
getDescription
A description for the AWS Verified Access endpoint.- See Also:
-
getDomainCertificateArn
The ARN of a public TLS/SSL certificate imported into or created with ACM.- See Also:
-
getEndpointDomainPrefix
A custom identifier that is prepended to the DNS name that is generated for the endpoint.- See Also:
-
getLoadBalancerOptions
The load balancer details if creating the AWS Verified Access endpoint asload-balancer
type.- See Also:
-
getNetworkInterfaceOptions
The options for network-interface type endpoint.- See Also:
-
getPolicyDocument
The Verified Access policy document.- See Also:
-
getPolicyEnabled
The status of the Verified Access policy.- See Also:
-
getRdsOptions
The options for an RDS endpoint.- See Also:
-
getSecurityGroupIds
The IDs of the security groups for the endpoint.- See Also:
-
getSseSpecification
The options for additional server side encryption.- See Also:
-
getTags
The tags.- See Also:
-
builder
-