AwsApiGatewayHttpCustomDomainMappingTargetArgs

interface AwsApiGatewayHttpCustomDomainMappingTargetArgs { apiId?: Input<string>; apiName?: Input<string>; stageName: Input<string>; }

Optional mapping target override for HTTP custom domains.

Example

CODE
const mappingTarget: AwsApiGatewayHttpCustomDomainMappingTargetArgs = {
  apiName: 'existing-http-api',
  stageName: 'prod',
};

Properties

apiId: Input<string>

Existing HTTP API ID to map the custom domain base path to. Provide either this or apiName.

apiName: Input<string>

Existing HTTP API name to resolve and map the custom domain base path to. Provide either this or apiId.

stageName: Input<string>

Existing HTTP stage name to map the custom domain base path to.