Show / Hide Table of Contents

Class BasePathMappingState

Inheritance
System.Object
InputArgs
ResourceArgs
BasePathMappingState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.ApiGateway
Assembly: Pulumi.Aws.dll
Syntax
public sealed class BasePathMappingState : ResourceArgs

Constructors

View Source

BasePathMappingState()

Declaration
public BasePathMappingState()

Properties

View Source

BasePath

Path segment that must be prepended to the path when accessing the API via this mapping. If omitted, the API is exposed at the root of the given domain.

Declaration
public Input<string> BasePath { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DomainName

The already-registered domain name to connect the API to.

Declaration
public Input<string> DomainName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RestApi

The id of the API to connect.

Declaration
public Input<string> RestApi { get; set; }
Property Value
Type Description
Input<System.String>
View Source

StageName

The name of a specific deployment stage to expose at the given path. If omitted, callers may select any stage by including its name as a path element after the base path.

Declaration
public Input<string> StageName { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.