aws-cdk-lib.aws_location.CfnMapProps

interface CfnMapProps

LanguageType name
.NETAmazon.CDK.AWS.Location.CfnMapProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslocation#CfnMapProps
Javasoftware.amazon.awscdk.services.location.CfnMapProps
Pythonaws_cdk.aws_location.CfnMapProps
TypeScript aws-cdk-lib » aws_location » CfnMapProps

Properties for defining a CfnMap.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_location as location } from 'aws-cdk-lib';
const cfnMapProps: location.CfnMapProps = {
  configuration: {
    style: 'style',
  },
  mapName: 'mapName',

  // the properties below are optional
  description: 'description',
  pricingPlan: 'pricingPlan',
};

Properties

NameTypeDescription
configurationIResolvable | MapConfigurationPropertySpecifies the MapConfiguration , including the map style, for the map resource that you create.
mapNamestringThe name for the map resource.
description?stringAn optional description for the map resource.
pricingPlan?stringNo longer used. If included, the only allowed value is RequestBasedUsage .

configuration

Type: IResolvable | MapConfigurationProperty

Specifies the MapConfiguration , including the map style, for the map resource that you create.

The map style defines the look of maps and the data provider for your map resource.


mapName

Type: string

The name for the map resource.

Requirements:

  • Must contain only alphanumeric characters (A–Z, a–z, 0–9), hyphens (-), periods (.), and underscores (_).
  • Must be a unique map resource name.
  • No spaces allowed. For example, ExampleMap .

description?

Type: string (optional)

An optional description for the map resource.


pricingPlan?

Type: string (optional)

No longer used. If included, the only allowed value is RequestBasedUsage .

Allowed Values : RequestBasedUsage