Interface CfnApplicationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplicationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-08-20T12:34:37.453Z") @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.appintegrations.*;
 CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder()
         .applicationSourceConfig(ApplicationSourceConfigProperty.builder()
                 .externalUrlConfig(ExternalUrlConfigProperty.builder()
                         .accessUrl("accessUrl")
                         // the properties below are optional
                         .approvedOrigins(List.of("approvedOrigins"))
                         .build())
                 .build())
         .description("description")
         .name("name")
         .namespace("namespace")
         // the properties below are optional
         .applicationConfig(ApplicationConfigProperty.builder()
                 .contactHandling(ContactHandlingProperty.builder()
                         .scope("scope")
                         .build())
                 .build())
         .iframeConfig(IframeConfigProperty.builder()
                 .allow(List.of("allow"))
                 .sandbox(List.of("sandbox"))
                 .build())
         .initializationTimeout(123)
         .isService(false)
         .permissions(List.of("permissions"))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: