interface CfnVerifiedAccessEndpointProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.EC2.CfnVerifiedAccessEndpointProps | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVerifiedAccessEndpointProps | 
  Java | software.amazon.awscdk.services.ec2.CfnVerifiedAccessEndpointProps | 
  Python | aws_cdk.aws_ec2.CfnVerifiedAccessEndpointProps | 
  TypeScript  | aws-cdk-lib » aws_ec2 » CfnVerifiedAccessEndpointProps | 
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 { aws_ec2 as ec2 } from 'aws-cdk-lib';
const cfnVerifiedAccessEndpointProps: ec2.CfnVerifiedAccessEndpointProps = {
  attachmentType: 'attachmentType',
  endpointType: 'endpointType',
  verifiedAccessGroupId: 'verifiedAccessGroupId',
  // the properties below are optional
  applicationDomain: 'applicationDomain',
  cidrOptions: {
    cidr: 'cidr',
    portRanges: [{
      fromPort: 123,
      toPort: 123,
    }],
    protocol: 'protocol',
    subnetIds: ['subnetIds'],
  },
  description: 'description',
  domainCertificateArn: 'domainCertificateArn',
  endpointDomainPrefix: 'endpointDomainPrefix',
  loadBalancerOptions: {
    loadBalancerArn: 'loadBalancerArn',
    port: 123,
    portRanges: [{
      fromPort: 123,
      toPort: 123,
    }],
    protocol: 'protocol',
    subnetIds: ['subnetIds'],
  },
  networkInterfaceOptions: {
    networkInterfaceId: 'networkInterfaceId',
    port: 123,
    portRanges: [{
      fromPort: 123,
      toPort: 123,
    }],
    protocol: 'protocol',
  },
  policyDocument: 'policyDocument',
  policyEnabled: false,
  rdsOptions: {
    port: 123,
    protocol: 'protocol',
    rdsDbClusterArn: 'rdsDbClusterArn',
    rdsDbInstanceArn: 'rdsDbInstanceArn',
    rdsDbProxyArn: 'rdsDbProxyArn',
    rdsEndpoint: 'rdsEndpoint',
    subnetIds: ['subnetIds'],
  },
  securityGroupIds: ['securityGroupIds'],
  sseSpecification: {
    customerManagedKeyEnabled: false,
    kmsKeyArn: 'kmsKeyArn',
  },
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| attachment | string | The type of attachment used to provide connectivity between the AWS Verified Access endpoint and the application. | 
| endpoint | string | The type of AWS Verified Access endpoint. | 
| verified | string | The ID of the AWS Verified Access group. | 
| application | string | The DNS name for users to reach your application. | 
| cidr | IResolvable | Cidr | The options for a CIDR endpoint. | 
| description? | string | A description for the AWS Verified Access endpoint. | 
| domain | string | The ARN of a public TLS/SSL certificate imported into or created with ACM. | 
| endpoint | string | A custom identifier that is prepended to the DNS name that is generated for the endpoint. | 
| load | IResolvable | Load | The load balancer details if creating the AWS Verified Access endpoint as load-balancer type. | 
| network | IResolvable | Network | The options for network-interface type endpoint. | 
| policy | string | The Verified Access policy document. | 
| policy | boolean | IResolvable | The status of the Verified Access policy. | 
| rds | IResolvable | Rds | The options for an RDS endpoint. | 
| security | string[] | The IDs of the security groups for the endpoint. | 
| sse | IResolvable | Sse | The options for additional server side encryption. | 
| tags? | Cfn[] | The tags. | 
attachmentType
Type:
string
The type of attachment used to provide connectivity between the AWS Verified Access endpoint and the application.
endpointType
Type:
string
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.
verifiedAccessGroupId
Type:
string
The ID of the AWS Verified Access group.
applicationDomain?
Type:
string
(optional)
The DNS name for users to reach your application.
cidrOptions?
Type:
IResolvable | Cidr
(optional)
The options for a CIDR endpoint.
description?
Type:
string
(optional)
A description for the AWS Verified Access endpoint.
domainCertificateArn?
Type:
string
(optional)
The ARN of a public TLS/SSL certificate imported into or created with ACM.
endpointDomainPrefix?
Type:
string
(optional)
A custom identifier that is prepended to the DNS name that is generated for the endpoint.
loadBalancerOptions?
Type:
IResolvable | Load
(optional)
The load balancer details if creating the AWS Verified Access endpoint as load-balancer type.
networkInterfaceOptions?
Type:
IResolvable | Network
(optional)
The options for network-interface type endpoint.
policyDocument?
Type:
string
(optional)
The Verified Access policy document.
policyEnabled?
Type:
boolean | IResolvable
(optional)
The status of the Verified Access policy.
rdsOptions?
Type:
IResolvable | Rds
(optional)
The options for an RDS endpoint.
securityGroupIds?
Type:
string[]
(optional)
The IDs of the security groups for the endpoint.
sseSpecification?
Type:
IResolvable | Sse
(optional)
The options for additional server side encryption.
tags?
Type:
Cfn[]
(optional)
The tags.

 .NET
 Go
 Java
 Python
 TypeScript