Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(location): support Map #30648

Merged
merged 29 commits into from
Nov 21, 2024
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
9d9b731
feat: support Map
mazyu36 Jun 24, 2024
cf12522
Merge branch 'main' into location-service-map
mazyu36 Jun 24, 2024
f842ce7
update docs
mazyu36 Jun 25, 2024
af5ed10
Merge branch 'main' into location-service-map
mazyu36 Jun 25, 2024
679cbd1
fix: update README
mazyu36 Jun 25, 2024
270aeb8
minor update
mazyu36 Jun 26, 2024
80ca57d
Merge branch 'main' into location-service-map
mazyu36 Jun 26, 2024
650abf1
Merge branch 'main' into location-service-map
mazyu36 Jul 28, 2024
669ee9e
fix typo
mazyu36 Jul 28, 2024
d7509a9
add description validation
mazyu36 Jul 29, 2024
91e92e2
update validation
mazyu36 Jul 29, 2024
bdea4a4
update docs
mazyu36 Jul 31, 2024
2a457dc
Merge branch 'main' into location-service-map
mazyu36 Aug 6, 2024
c002d62
Merge branch 'main' into location-service-map
mazyu36 Aug 14, 2024
3397333
update
mazyu36 Aug 28, 2024
9713116
Merge branch 'main' into location-service-map
mazyu36 Aug 29, 2024
ce2a78d
Merge branch 'main' into location-service-map
mazyu36 Aug 29, 2024
d8e6e17
remove baseclass
mazyu36 Aug 29, 2024
64f6f3f
Merge remote-tracking branch 'upstream/main' into location-service-map
mazyu36 Aug 30, 2024
074aa3a
Merge branch 'main' into location-service-map
mazyu36 Sep 14, 2024
0f33f2c
Merge branch 'main' into location-service-map
mazyu36 Oct 8, 2024
2078853
Merge branch 'main' into location-service-map
mazyu36 Oct 26, 2024
8641f54
fix
mazyu36 Nov 4, 2024
53acba4
delete unnecessary tests
mazyu36 Nov 5, 2024
11a04f1
Merge branch 'main' into location-service-map
mazyu36 Nov 5, 2024
5f5d6b8
Merge branch 'main' into location-service-map
mazyu36 Nov 13, 2024
472fb6f
Update packages/@aws-cdk/aws-location-alpha/lib/map.ts
GavinZZ Nov 20, 2024
01b3e35
Merge branch 'main' into location-service-map
mergify[bot] Nov 20, 2024
0ce3049
Merge branch 'main' into location-service-map
mergify[bot] Nov 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update docs
  • Loading branch information
mazyu36 committed Jun 25, 2024
commit f842ce77afc3a7c64c1e1e9ca34cedab12ada3b8
9 changes: 7 additions & 2 deletions packages/@aws-cdk/aws-location-alpha/lib/map.ts
Original file line number Diff line number Diff line change
@@ -4,6 +4,9 @@ import { Construct } from 'constructs';
import { CfnMap } from 'aws-cdk-lib/aws-location';
import { generateUniqueId } from './util';

/**
* Represents the Amazon Location Service Map
*/
export interface IMap extends IResource {
/**
* The name of the map
@@ -21,7 +24,7 @@ export interface IMap extends IResource {
}

/**
* Properties for a map
* Properties for the Amazon Location Service Map
*/
export interface MapProps {
/**
@@ -238,7 +241,9 @@ abstract class MapBase extends Resource implements IMap {
}

/**
* A map is a collection of map data.
* The Amazon Location Service Map
*
* @see https://docs.aws.amazon.com/location/latest/developerguide/map-concepts.html
*/
export class Map extends MapBase {
/**