interface MapReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Location.MapReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslocation#MapReference |
Java | software.amazon.awscdk.interfaces.location.MapReference |
Python | aws_cdk.interfaces.aws_location.MapReference |
TypeScript | aws-cdk-lib » interfaces » aws_location » MapReference |
A reference to a Map 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_aws_location } from 'aws-cdk-lib/interfaces';
const mapReference: interfaces_aws_location.MapReference = {
mapArn: 'mapArn',
mapName: 'mapName',
};
Properties
| Name | Type | Description |
|---|---|---|
| map | string | The ARN of the Map resource. |
| map | string | The MapName of the Map resource. |
mapArn
Type:
string
The ARN of the Map resource.
mapName
Type:
string
The MapName of the Map resource.

.NET
Go
Java
Python
TypeScript