Interface CfnApplicationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:04.467Z")
@Stability(Stable)
public interface CfnApplicationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnApplicationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.refactorspaces.*;
CfnApplicationMixinProps cfnApplicationMixinProps = CfnApplicationMixinProps.builder()
.apiGatewayProxy(ApiGatewayProxyInputProperty.builder()
.endpointType("endpointType")
.stageName("stageName")
.build())
.environmentIdentifier("environmentIdentifier")
.name("name")
.proxyType("proxyType")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.vpcId("vpcId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationMixinPropsstatic final classAn implementation forCfnApplicationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe endpoint URL of the Amazon API Gateway proxy.default ObjectThe unique identifier of the environment.default StringgetName()The name of the application.default StringThe proxy type of the proxy created within the application.getTags()The tags assigned to the application.default ObjectgetVpcId()The ID of the virtual private cloud (VPC).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiGatewayProxy
The endpoint URL of the Amazon API Gateway proxy.Returns union: either
IResolvableorCfnApplicationPropsMixin.ApiGatewayProxyInputProperty- See Also:
-
getEnvironmentIdentifier
The unique identifier of the environment.Returns union: either
StringorIEnvironmentRef- See Also:
-
getName
The name of the application.- See Also:
-
getProxyType
The proxy type of the proxy created within the application.- See Also:
-
getTags
The tags assigned to the application.- See Also:
-
getVpcId
- See Also:
-
builder
- Returns:
- a
CfnApplicationMixinProps.BuilderofCfnApplicationMixinProps
-