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();
 
  • Method Details

    • getEnvironmentIdentifier

      @Stability(Stable) @NotNull String getEnvironmentIdentifier()
      The unique identifier of the environment.
    • getName

      @Stability(Stable) @NotNull String getName()
      The name of the application.
    • getProxyType

      @Stability(Stable) @NotNull String getProxyType()
      The proxy type of the proxy created within the application.
    • getVpcId

      @Stability(Stable) @NotNull String getVpcId()
      The ID of the virtual private cloud (VPC).
    • getApiGatewayProxy

      @Stability(Stable) @Nullable default Object getApiGatewayProxy()
      The endpoint URL of the Amazon API Gateway proxy.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The tags assigned to the application.
    • builder

      @Stability(Stable) static CfnApplicationProps.Builder builder()
      Returns:
      a CfnApplicationProps.Builder of CfnApplicationProps