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 = {
applicationDomain: 'applicationDomain',
attachmentType: 'attachmentType',
domainCertificateArn: 'domainCertificateArn',
endpointDomainPrefix: 'endpointDomainPrefix',
endpointType: 'endpointType',
verifiedAccessGroupId: 'verifiedAccessGroupId',
// the properties below are optional
description: 'description',
loadBalancerOptions: {
loadBalancerArn: 'loadBalancerArn',
port: 123,
protocol: 'protocol',
subnetIds: ['subnetIds'],
},
networkInterfaceOptions: {
networkInterfaceId: 'networkInterfaceId',
port: 123,
protocol: 'protocol',
},
policyDocument: 'policyDocument',
policyEnabled: false,
securityGroupIds: ['securityGroupIds'],
sseSpecification: {
customerManagedKeyEnabled: false,
kmsKeyArn: 'kmsKeyArn',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
application | string | The DNS name for users to reach your application. |
attachment | string | The type of attachment used to provide connectivity between the AWS Verified Access endpoint and the application. |
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. |
endpoint | string | The type of AWS Verified Access endpoint. |
verified | string | The ID of the AWS Verified Access group. |
description? | string | A description for the AWS Verified Access 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. |
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. |
applicationDomain
Type:
string
The DNS name for users to reach your application.
attachmentType
Type:
string
The type of attachment used to provide connectivity between the AWS Verified Access endpoint and the application.
domainCertificateArn
Type:
string
The ARN of a public TLS/SSL certificate imported into or created with ACM.
endpointDomainPrefix
Type:
string
A custom identifier that is prepended to the DNS name that is generated for the endpoint.
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.
description?
Type:
string
(optional)
A description for the AWS Verified Access 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.
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.