Interface CfnApplicationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:34.910Z")
@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();
-
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. -
getName
The name of the application. -
getProxyType
The proxy type of the proxy created within the application. -
getVpcId
The ID of the virtual private cloud (VPC). -
getApiGatewayProxy
The endpoint URL of the Amazon API Gateway proxy. -
getTags
The tags assigned to the application. -
builder
- Returns:
- a
CfnApplicationProps.Builder
ofCfnApplicationProps
-