Interface CfnApiMappingProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApiMappingProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)",
date="2024-09-06T01:36:22.808Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApiMappingProps
static final class
An implementation forCfnApiMappingProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnApiMappingProps.Builder
builder()
getApiId()
The API identifier.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 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.Builder
ofCfnApiMappingProps
-