Class CfnBasePathMappingProps
Properties for defining a CfnBasePathMapping
.
Inheritance
System.Object
CfnBasePathMappingProps
Implements
Namespace: Amazon.CDK.AWS.APIGateway
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBasePathMappingProps : Object, ICfnBasePathMappingProps
Syntax (vb)
Public Class CfnBasePathMappingProps
Inherits Object
Implements ICfnBasePathMappingProps
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.AWS.APIGateway;
var cfnBasePathMappingProps = new CfnBasePathMappingProps {
DomainName = "domainName",
// the properties below are optional
BasePath = "basePath",
Id = "id",
RestApiId = "restApiId",
Stage = "stage"
};
Synopsis
Constructors
CfnBasePathMappingProps() |
Properties
BasePath | The base path name that callers of the API must provide as part of the URL after the domain name. |
DomainName | The domain name of the BasePathMapping resource to be described. |
Id |
|
RestApiId | The string identifier of the associated RestApi. |
Stage | The name of the associated stage. |
Constructors
CfnBasePathMappingProps()
public CfnBasePathMappingProps()
Properties
BasePath
The base path name that callers of the API must provide as part of the URL after the domain name.
public string BasePath { get; set; }
Property Value
System.String
Remarks
DomainName
The domain name of the BasePathMapping resource to be described.
public string DomainName { get; set; }
Property Value
System.String
Remarks
Id
AWS::ApiGateway::BasePathMapping.Id
.
public string Id { get; set; }
Property Value
System.String
Remarks
RestApiId
The string identifier of the associated RestApi.
public string RestApiId { get; set; }
Property Value
System.String
Remarks
Stage
The name of the associated stage.
public string Stage { get; set; }
Property Value
System.String