

**지원 종료 공지:** 2026년 10월 30일에 Amazon Pinpoint에 대한 지원이 AWS 종료됩니다. 2026년 10월 30일 이후에는 Amazon Pinpoint 콘솔 또는 Amazon Pinpoint 리소스(엔드포인트, 세그먼트, 캠페인, 여정, 분석)에 더 이상 액세스할 수 없습니다. 자세한 내용은 [Amazon Pinpoint 지원 종료](https://docs.aws.amazon.com/console/pinpoint/migration-guide)를 참조하세요. **참고:** SMS, 음성, 모바일 푸시, OTP 및 전화번호 검증과 관련된 APIs는이 변경의 영향을 받지 않으며 AWS 최종 사용자 메시징에서 지원됩니다.

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# Amazon Pinpoint에 대한 인터페이스 VPC 엔드포인트 생성
<a name="security-vpc-endpoints"></a>

인터페이스 VPC 엔드포인트를 생성하여 Virtual Private Cloud(VPC)와 Amazon Pinpoint의 엔드포인트 간에 프라이빗 연결을 설정할 수 있습니다.

인터페이스 엔드포인트는 인터넷 게이트웨이[AWS PrivateLink](https://aws.amazon.com/privatelink/), NAT 디바이스, VPN 연결 또는 없이 Amazon Pinpoint APIs에 비공개로 액세스할 수 있는 기술로 구동됩니다 Direct Connect. VPC의 인스턴스는 AWS PrivateLink와 통합되는 Amazon Pinpoint API와 통신하는 데 퍼블릭 IP 주소를 필요로 하지 않습니다.

자세한 정보는 [AWS PrivateLink 안내서](https://docs.aws.amazon.com/vpc/latest/privatelink/what-is-privatelink.html)를 참조하세요.

## 인터페이스 VPC 엔드포인트 생성
<a name="security-vpc-endpoints-create"></a>

Amazon VPC 콘솔 또는 AWS Command Line Interface ()를 사용하여 인터페이스 엔드포인트를 생성할 수 있습니다AWS CLI. 자세한 내용은 AWS PrivateLink 가이드의 [인터페이스 엔드포인트 생성을 ](https://docs.aws.amazon.com/vpc/latest/privatelink/create-interface-endpoint.html) 참조하세요.

Amazon Pinpoint는 다음과 같은 서비스 이름을 지원합니다.
+ `com.amazonaws.region.pinpoint`
+ `com.amazonaws.region.pinpoint-sms-voice-v2`

인터페이스 엔드포인트에 대해 프라이빗 DNS를 켜는 경우와 AWS 리전같은의 기본 DNS 이름을 사용하여 Amazon Pinpoint에 API 요청을 할 수 있습니다`com.amazonaws.us-east-1.pinpoint`. 자세한 내용은 *AWS PrivateLink 설명서*에서 [DNS 호스트 이름](https://docs.aws.amazon.com/vpc/latest/privatelink/privatelink-access-aws-services.html#interface-endpoint-dns-hostnames)을 참조하세요.

현재 Amazon Pinpoint를 사용할 수 있는 모든 리전 목록은 *Amazon Web Services 일반 참조*의 [AWS 서비스 엔드포인트](https://docs.aws.amazon.com//general/latest/gr/pinpoint.html)를 참조하세요.

## VPC 엔드포인트 정책 생성
<a name="security-vpc-endpoints-policy"></a>

액세스를 제어하는 VPC 엔드포인트에 엔드포인트 정책을 연결할 수 있습니다. 이 정책은 다음 정보를 지정합니다.
+ 작업을 수행할 수 있는 위탁자.
+ 수행할 수 있는 작업.
+ 작업을 수행할 수 있는 리소스

자세한 내용은 *AWS PrivateLink 안내서*의 [엔드포인트 정책을 사용하여 서비스에 대한 액세스 제어](https://docs.aws.amazon.com/vpc/latest/privatelink/vpc-endpoints-access.html)를 참조하세요.

## 예제: VPC 엔드포인트 정책
<a name="security-vpc-endpoints-policy-example"></a>

아래의 VPC 엔드포인트 정책은 모든 리소스의 모든 보안 주체에 대한 액세스 권한을 나열된 Amazon Pinpoint 작업에 부여합니다.

```
{
"Statement": [
    {
      "Principal": "*",
      "Action": [
        "mobiletargeting:CreateCampaign",
        "mobiletargeting:CreateApp",
        "mobiletargeting:DeleteApp",
      ],
      "Effect": "Allow",
      "Resource": "*"
    }
  ]
}
```