--- title: "setVpcPeeringDescription" slug: "cli-vpc-vpcpeering-setvpcpeeringdescription" updated: 2026-06-25T09:10:30Z published: 2026-06-25T09:10:30Z canonical: "cli-fin.ncloud-docs.com/cli-vpc-vpcpeering-setvpcpeeringdescription" --- > ## Documentation Index > Fetch the complete documentation index at: https://cli-fin.ncloud-docs.com/llms.txt > Use this file to discover all available pages before exploring further. # setVpcPeeringDescription

VPC 환경에서 이용 가능합니다.

## 개요 VPC Peering 설명을 수정합니다. ## 요청 ### 요청 파라미터 | 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 | | ---------------------------------- | ------------ | -------------- | --------------------- | ------------------------------------------- | | regionCode | No | String | | - 리전 코드
설명을 수정할 VPC Peering 인스턴스의 리전(Region) 결정 가능
regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해 획득 가능
Default : getRegionList 조회 결과의 첫 번째 리전을 선택 | | vpcPeeringInstanceNo | Yes | String | | - 설명을 수정할 VPC Peering 인스턴스 번호
vpcPeeringInstanceNo는 [getVpcPeeringInstanceList](/docs/cli-vpc-vpcpeering-getvpcpeeringinstancelist) 액션을 통해 획득 가능 | | vpcPeeringDescription | No | String | Min : 0, Max : 1000 Bytes | 수정할 VPC Peering에 대한 설명 | | responseFormatType | No | String | | - 응답 결과의 포맷 타입
Options : xml \| json
Default : xml | ## 응답 ### 응답 데이터 타입 - VpcPeeringInstanceList 타입 | VpcPeeringInstanceList extends CommonResponse | | ---------- | | private Integer totalRows; | | private List vpcPeeringInstanceList = new ArrayList<>(); | | VpcPeeringInstance | | ---------- | | private String vpcPeeringInstanceNo; | | private String vpcPeeringName; | | private String regionCode; | | private Date createDate; | | private Date lastModifyDate; | | private CommonCode vpcPeeringInstanceStatus; | | private String vpcPeeringInstanceStatusName; | | private CommonCode vpcPeeringInstanceOperation; | | private String sourceVpcNo; | | private String sourceVpcName; | | private String sourceVpcIpv4CidrBlock; | | private String sourceVpcLoginId; | | private String targetVpcNo; | | private String targetVpcName; | | private String targetVpcIpv4CidrBlock; | | private String targetVpcLoginId; | | private String vpcPeeringDescription; | | private Boolean hasReverseVpcPeering; | | private Boolean isBetweenAccounts; | | private String reverseVpcPeeringInstanceNo; | ## 예시 ### 요청 예시 ``` ncloud vpc setVpcPeeringDescription --regionCode FKR --vpcPeeringInstanceNo ***6212 --vpcPeeringDescription test-description ``` ### 응답 예시 ```xml 714c5071-50d0-48ea-8e4f-e449009036d2 0 success 1 ***6212 test-*** FKR 2020-08-04T14:57:08+0900 RUN run 운영중 NULL NULL OP ***05 test-*** ***.**1.0.0/16 test-***@naver.com ***06 test-*** ***.**2.0.0/16 test-***@naver.com test-description false false ```