vpce

PrivateLink

NetworkingAWS
General

General information about the service.

Description

AWS PrivateLink provides private connectivity between VPCs and AWS services.

Service Namespace

AWS::EC2::VPCEndpoint

ARN Pattern

arn:aws:ec2:{region}:{account}:vpc-endpoint/{endpoint-id}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

vpce-

Length

1-255

Valid Characters

Letters, numbers, hyphens

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_vpc_endpoint" "main" {
2 vpc_id = var.vpc_id
3 service_name = "com.amazonaws.${var.region}.s3"
4 vpc_endpoint_type = "Interface"
5 subnet_ids = var.subnet_ids
6 security_group_ids = [var.security_group_id]
7}
Utilities

Utilities to support app deployment or configuration.