장소 색인 리소스 관리 - Amazon Location Service

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

장소 색인 리소스 관리

Amazon Location 콘솔, AWS CLI 또는 Amazon Location API를 사용하여 장소 색인 리소스를 관리할 수 있습니다.

장소 색인 리소스를 나열합니다.

Amazon Location 콘솔, AWS CLI 또는 Amazon Location API를 사용하여 장소 색인 리소스 목록을 볼 수 있습니다.

Console

Amazon Location 콘솔을 사용하여 장소 색인 자원 목록을 보려면

  1. https://console.aws.amazon.com/location/에서 Amazon Location 콘솔을 엽니다.

  2. 왼쪽 탐색 창에서 장소 색인을 선택합니다.

  3. 내 장소 색인에서 장소 색인 리소스 목록을 확인합니다.

API

Amazon Location Places API의 ListPlaceIndexes 작업을 사용합니다.

다음 예시는 AWS 계정의 장소 색인 리소스 목록을 가져오는 API 요청입니다.

POST /places/v0/list-indexes

다음은 ListPlaceIndexes에 대한 응답의 예입니다:

{ "Entries": [ { "CreateTime": 2020-10-30T01:38:36Z, "DataSource": "Esri", "Description": "string", "IndexName": "ExamplePlaceIndex", "UpdateTime": 2020-10-30T01:40:36Z } ], "NextToken": "1234-5678-9012" }
CLI

list-place-indexes 명령을 사용합니다.

다음 예시는 AWS 계정의 장소 색인 리소스 목록을 가져오는 AWS CLI입니다.

aws location list-place-indexes

장소 색인 리소스 세부 정보 가져오기

Amazon Location 콘솔, AWS CLI 또는 Amazon Location API를 사용하여 AWS 계정의 모든 장소 색인 리소스에 대한 세부 정보를 확인할 수 있습니다.

Console

Amazon Location 콘솔을 사용하여 장소 색인 리소스의 세부 정보를 보려면

  1. https://console.aws.amazon.com/location/에서 Amazon Location 콘솔을 엽니다.

  2. 왼쪽 탐색 창에서 장소 색인을 선택합니다.

  3. 내 장소 색인에서 대상 장소 색인 리소스의 이름 링크를 선택합니다.

API

Amazon Location Place API의 DescribePlaceIndex 작업을 사용합니다.

다음은 장소 색인 리소스 세부 정보를 가져오기 위한 API ExamplePlaceIndex요청입니다.

GET /places/v0/indexes/ExamplePlaceIndex

다음은 DescribePlaceIndex에 대한 응답의 예입니다:

{ "CreateTime": 2020-10-30T01:38:36Z, "DataSource": "Esri", "DataSourceConfiguration": { "IntendedUse": "SingleUse" }, "Description": "string", "IndexArn": "arn:aws:geo:us-west-2:123456789012:place-indexes/ExamplePlaceIndex", "IndexName": "ExamplePlaceIndex", "Tags": { "string" : "string" }, "UpdateTime": 2020-10-30T01:40:36Z }
CLI

describe-place-index 명령을 사용합니다.

다음은 장소 색인 리소스 세부 정보를 AWS CLI 가져오는 예제입니다 ExamplePlaceIndex.

aws location describe-place-index \ --index-name "ExamplePlaceIndex"

장소 색인 리소스 삭제

Amazon Location 콘솔, AWS CLI 또는 Amazon Location API를 사용하여 AWS 계정에서 장소 색인 리소스를 삭제할 수 있습니다.

Console

Amazon Location 콘솔을 사용하여 장소 색인 리소스를 삭제하려면

주의

이 작업은 리소스를 영구적으로 삭제합니다.

  1. https://console.aws.amazon.com/location/에서 Amazon Location 콘솔을 엽니다.

  2. 왼쪽 탐색 창에서 장소 색인을 선택합니다.

  3. 내 장소 색인에서 대상 장소 색인 리소스를 선택합니다.

  4. 장소 색인 삭제를 선택합니다.

API

Amazon Location Places API의 DeletePlaceIndex 작업을 사용합니다.

다음은 장소 색인 리소스를 삭제하기 위한 API ExamplePlaceIndex요청입니다.

DELETE /places/v0/indexes/ExamplePlaceIndex

다음은 DeletePlaceIndex에 대한 성공적인 응답의 예입니다.

HTTP/1.1 200
CLI

delete-place-index 명령을 사용합니다.

다음 예시는 장소 색인 리소스를 삭제하는 AWS CLI ExamplePlaceIndex명령입니다.

aws location delete-place-index \ --index-name "ExamplePlaceIndex"