Class BasePathMappingArgs
Inherited Members
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 BasePathMappingArgs : ResourceArgs
Constructors
View SourceBasePathMappingArgs()
Declaration
public BasePathMappingArgs()
Properties
View SourceBasePath
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> |
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> |
RestApi
The id of the API to connect.
Declaration
public Input<string> RestApi { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |