interface GeofenceCollectionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Location.GeofenceCollectionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslocation#GeofenceCollectionReference |
Java | software.amazon.awscdk.interfaces.location.GeofenceCollectionReference |
Python | aws_cdk.interfaces.aws_location.GeofenceCollectionReference |
TypeScript | aws-cdk-lib » interfaces » aws_location » GeofenceCollectionReference |
A reference to a GeofenceCollection 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 geofenceCollectionReference: interfaces_location.GeofenceCollectionReference = {
collectionName: 'collectionName',
geofenceCollectionArn: 'geofenceCollectionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| collection | string | The CollectionName of the GeofenceCollection resource. |
| geofence | string | The ARN of the GeofenceCollection resource. |
collectionName
Type:
string
The CollectionName of the GeofenceCollection resource.
geofenceCollectionArn
Type:
string
The ARN of the GeofenceCollection resource.

.NET
Go
Java
Python
TypeScript