GetVpcEndpointResult

data class GetVpcEndpointResult(val creationTimestamp: String? = null, val dnsEntries: List<String>? = null, val id: String? = null, val networkInterfaceIds: List<String>? = null, val policyDocument: Any? = null, val privateDnsEnabled: Boolean? = null, val routeTableIds: List<String>? = null, val securityGroupIds: List<String>? = null, val subnetIds: List<String>? = null)

Constructors

Link copied to clipboard
constructor(creationTimestamp: String? = null, dnsEntries: List<String>? = null, id: String? = null, networkInterfaceIds: List<String>? = null, policyDocument: Any? = null, privateDnsEnabled: Boolean? = null, routeTableIds: List<String>? = null, securityGroupIds: List<String>? = null, subnetIds: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The date and time the VPC endpoint was created. For example: Fri Sep 28 23:34:36 UTC 2018.

Link copied to clipboard
val dnsEntries: List<String>? = null

(Interface endpoints) The DNS entries for the endpoint. Each entry is a combination of the hosted zone ID and the DNS name. The entries are ordered as follows: regional public DNS, zonal public DNS, private DNS, and wildcard DNS. This order is not enforced for AWS Marketplace services. The following is an example. In the first entry, the hosted zone ID is Z1HUB23UULQXV and the DNS name is vpce-01abc23456de78f9g-12abccd3.ec2.us-east-1.vpce.amazonaws.com. "Z1HUB23UULQXV:vpce-01abc23456de78f9g-12abccd3.ec2.us-east-1.vpce.amazonaws.com", "Z1HUB23UULQXV:vpce-01abc23456de78f9g-12abccd3-us-east-1a.ec2.us-east-1.vpce.amazonaws.com", "Z1C12344VYDITB0:ec2.us-east-1.amazonaws.com" If you update the PrivateDnsEnabled or SubnetIds properties, the DNS entries in the list will change.

Link copied to clipboard
val id: String? = null

The ID of the VPC endpoint.

Link copied to clipboard

(Interface endpoints) The network interface IDs. If you update the PrivateDnsEnabled or SubnetIds properties, the items in this list might change.

Link copied to clipboard
val policyDocument: Any? = null

An endpoint policy, which controls access to the service from the VPC. The default endpoint policy allows full access to the service. Endpoint policies are supported only for gateway and interface endpoints. For CloudFormation templates in YAML, you can provide the policy in JSON or YAML format. CFNlong converts YAML policies to JSON format before calling the API to create or modify the VPC endpoint. Search the CloudFormation User Guide for AWS::EC2::VPCEndpoint for more information about the expected schema for this property.

Link copied to clipboard

Indicate whether to associate a private hosted zone with the specified VPC. The private hosted zone contains a record set for the default public DNS name for the service for the Region (for example, `kinesis.us-east-1.amazonaws.com`), which resolves to the private IP addresses of the endpoint network interfaces in the VPC. This enables you to make requests to the default public DNS name for the service instead of the public DNS names that are automatically generated by the VPC endpoint service. To use a private hosted zone, you must set the following VPC attributes to `true`: `enableDnsHostnames` and `enableDnsSupport`. This property is supported only for interface endpoints. Default: `false`

Link copied to clipboard
val routeTableIds: List<String>? = null

The IDs of the route tables. Routing is supported only for gateway endpoints.

Link copied to clipboard

The IDs of the security groups to associate with the endpoint network interfaces. If this parameter is not specified, we use the default security group for the VPC. Security groups are supported only for interface endpoints.

Link copied to clipboard
val subnetIds: List<String>? = null

The IDs of the subnets in which to create endpoint network interfaces. You must specify this property for an interface endpoint or a Gateway Load Balancer endpoint. You can't specify this property for a gateway endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.