Interface CfnApplicationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:38.205Z")
@Stability(Stable)
public interface CfnApplicationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnApplication
.
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.refactorspaces.*; CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder() .environmentIdentifier("environmentIdentifier") .name("name") .proxyType("proxyType") .vpcId("vpcId") // the properties below are optional .apiGatewayProxy(ApiGatewayProxyInputProperty.builder() .endpointType("endpointType") .stageName("stageName") .build()) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationProps
static final class
An implementation forCfnApplicationProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnApplicationProps.Builder
builder()
default Object
The endpoint URL of the Amazon API Gateway proxy.The unique identifier of the environment.getName()
The name of the application.The proxy type of the proxy created within the application.getTags()
The tags assigned to the application.getVpcId()
The ID of the virtual private cloud (VPC).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnvironmentIdentifier
The unique identifier of the environment.- See Also:
-
getName
The name of the application.- See Also:
-
getProxyType
The proxy type of the proxy created within the application.- See Also:
-
getVpcId
The ID of the virtual private cloud (VPC).- See Also:
-
getApiGatewayProxy
The endpoint URL of the Amazon API Gateway proxy.- See Also:
-
getTags
The tags assigned to the application.- See Also:
-
builder
- Returns:
- a
CfnApplicationProps.Builder
ofCfnApplicationProps
-