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-27T17:01:56.794Z") @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
         .permissions(List.of("permissions"))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: