Show / Hide Table of Contents

Class MapReference

A reference to a Map resource.

Inheritance
object
MapReference
Implements
IMapReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

MapName

The MapName of the Map resource.

public string MapName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IMapReference
Back to top Generated by DocFX