@aws-cdk_aws-location-alpha.PlaceIndexProps

interface PlaceIndexProps ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Location.Alpha.PlaceIndexProps
Gogithub.com/aws/aws-cdk-go/awscdklocationalpha/v2#PlaceIndexProps
Javasoftware.amazon.awscdk.services.location.alpha.PlaceIndexProps
Pythonaws_cdk.aws_location_alpha.PlaceIndexProps
TypeScript (source)@aws-cdk/aws-location-alpha ยป PlaceIndexProps

Properties for a place index.

Example

new location.PlaceIndex(this, 'PlaceIndex', {
  placeIndexName: 'MyPlaceIndex', // optional, defaults to a generated name
  dataSource: location.DataSource.HERE, // optional, defaults to Esri
});

Properties

NameTypeDescription
dataSource?๐Ÿ”นDataSourceData source for the place index.
description?๐Ÿ”นstringA description for the place index.
intendedUse?๐Ÿ”นIntendedUseIntend use for the results of an operation.
placeIndexName?๐Ÿ”นstringA name for the place index.

dataSource?๐Ÿ”น

Type: DataSource (optional, default: DataSource.ESRI)

Data source for the place index.


description?๐Ÿ”น

Type: string (optional, default: no description)

A description for the place index.


intendedUse?๐Ÿ”น

Type: IntendedUse (optional, default: IntendedUse.SINGLE_USE)

Intend use for the results of an operation.


placeIndexName?๐Ÿ”น

Type: string (optional, default: A name is automatically generated)

A name for the place index.