Interface IBasePathMappingProps
- Namespace
- Amazon.CDK.AWS.APIGateway
- Assembly
- Amazon.CDK.AWS.APIGateway.dll
public interface IBasePathMappingProps : IBasePathMappingOptions
- Inherited Members
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;
DomainName domainName;
RestApi restApi;
Stage stage;
var basePathMappingProps = new BasePathMappingProps {
DomainName = domainName,
RestApi = restApi,
// the properties below are optional
BasePath = "basePath",
Stage = stage
};
Remarks
ExampleMetadata: fixture=_generated
Properties
DomainName
The DomainName to associate with this base path mapping.
IDomainName DomainName { get; }
Property Value
RestApi
The RestApi resource to target.
IRestApi RestApi { get; }