Interface CfnApiMappingProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApiMappingProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:44.484Z")
@Stability(Stable)
public interface CfnApiMappingProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnApiMapping.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.apigatewayv2.*;
CfnApiMappingProps cfnApiMappingProps = CfnApiMappingProps.builder()
.apiId("apiId")
.domainName("domainName")
.stage("stage")
// the properties below are optional
.apiMappingKey("apiMappingKey")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApiMappingPropsstatic final classAn implementation forCfnApiMappingProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnApiMappingProps.Builderbuilder()getApiId()The API identifier.default StringThe API mapping key.The domain name.getStage()The API stage.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiId
The API identifier.- See Also:
-
getDomainName
The domain name.- See Also:
-
getStage
The API stage.- See Also:
-
getApiMappingKey
The API mapping key.- See Also:
-
builder
- Returns:
- a
CfnApiMappingProps.BuilderofCfnApiMappingProps
-