interface PlaceIndexReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Location.PlaceIndexReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslocation#PlaceIndexReference |
Java | software.amazon.awscdk.interfaces.location.PlaceIndexReference |
Python | aws_cdk.interfaces.aws_location.PlaceIndexReference |
TypeScript | aws-cdk-lib » interfaces » aws_location » PlaceIndexReference |
A reference to a PlaceIndex resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_location as interfaces_location } from 'aws-cdk-lib/interfaces';
const placeIndexReference: interfaces_location.PlaceIndexReference = {
indexName: 'indexName',
placeIndexArn: 'placeIndexArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| index | string | The IndexName of the PlaceIndex resource. |
| place | string | The ARN of the PlaceIndex resource. |
indexName
Type:
string
The IndexName of the PlaceIndex resource.
placeIndexArn
Type:
string
The ARN of the PlaceIndex resource.

.NET
Go
Java
Python
TypeScript