Table of Contents

Interface ICfnBasePathMappingProps

Namespace
Amazon.CDK.AWS.APIGateway
Assembly
Amazon.CDK.AWS.APIGateway.dll

Properties for defining a CfnBasePathMapping.

public interface ICfnBasePathMappingProps

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.APIGateway;

             var cfnBasePathMappingProps = new CfnBasePathMappingProps {
                 DomainName = "domainName",

                 // the properties below are optional
                 BasePath = "basePath",
                 Id = "id",
                 RestApiId = "restApiId",
                 Stage = "stage"
             };

Remarks

Properties

BasePath

The base path name that callers of the API must provide as part of the URL after the domain name.

string? BasePath { get; }

Property Value

string

Remarks

DomainName

The domain name of the BasePathMapping resource to be described.

string DomainName { get; }

Property Value

string

Remarks

Id

AWS::ApiGateway::BasePathMapping.Id.

string? Id { get; }

Property Value

string

Remarks

RestApiId

The string identifier of the associated RestApi.

string? RestApiId { get; }

Property Value

string

Remarks

Stage

The name of the associated stage.

string? Stage { get; }

Property Value

string

Remarks