Class MapReference
A reference to a Map resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.Location
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class MapReference : IMapReference
Syntax (vb)
Public Class MapReference Implements IMapReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.Location;
var mapReference = new MapReference {
MapArn = "mapArn",
MapName = "mapName"
};
Synopsis
Constructors
| MapReference() | A reference to a Map resource. |
Properties
| MapArn | The ARN of the Map resource. |
| MapName | The MapName of the Map resource. |
Constructors
MapReference()
A reference to a Map resource.
public MapReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.Location;
var mapReference = new MapReference {
MapArn = "mapArn",
MapName = "mapName"
};
Properties
MapArn
The ARN of the Map resource.
public string MapArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
MapName
The MapName of the Map resource.
public string MapName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated