Interface CfnApiMappingProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApiMappingProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:43.170Z")
@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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApiMappingProps
static final class
An implementation forCfnApiMappingProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnApiMappingProps.Builder
builder()
getApiId()
The identifier of the API.default String
The API mapping key.The domain name.getStage()
The API stage.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiId
The identifier of the API. -
getDomainName
The domain name. -
getStage
The API stage. -
getApiMappingKey
The API mapping key. -
builder
- Returns:
- a
CfnApiMappingProps.Builder
ofCfnApiMappingProps
-