Show / Hide Table of Contents

Interface IBasePathMappingProps

Inherited Members
IBasePathMappingOptions.AttachToStage
IBasePathMappingOptions.BasePath
IBasePathMappingOptions.Stage
Namespace: Amazon.CDK.AWS.APIGateway
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IBasePathMappingProps : IBasePathMappingOptions
Syntax (vb)
Public Interface IBasePathMappingProps Inherits IBasePathMappingOptions
Remarks

ExampleMetadata: infused

Examples
RestApi api;


            var domainName = DomainName.FromDomainNameAttributes(this, "DomainName", new DomainNameAttributes {
                DomainName = "domainName",
                DomainNameAliasHostedZoneId = "domainNameAliasHostedZoneId",
                DomainNameAliasTarget = "domainNameAliasTarget"
            });

            new BasePathMapping(this, "BasePathMapping", new BasePathMappingProps {
                DomainName = domainName,
                RestApi = api
            });

Synopsis

Properties

DomainName

The DomainName to associate with this base path mapping.

RestApi

The RestApi resource to target.

Properties

DomainName

The DomainName to associate with this base path mapping.

IDomainNameRef DomainName { get; }
Property Value

IDomainNameRef

Remarks

ExampleMetadata: infused

RestApi

The RestApi resource to target.

IRestApiRef RestApi { get; }
Property Value

IRestApiRef

Remarks

ExampleMetadata: infused

Back to top Generated by DocFX