Class CfnApplication

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, ITaggableV2, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-06T23:25:03.939Z") @Stability(Stable) public class CfnApplication extends CfnResource implements IInspectable, ITaggableV2
Creates and persists an Application resource.

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.*;
 CfnApplication cfnApplication = CfnApplication.Builder.create(this, "MyCfnApplication")
         .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:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnApplication

      protected CfnApplication(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnApplication

      protected CfnApplication(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnApplication

      @Stability(Stable) public CfnApplication(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnApplicationProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrApplicationArn

      @Stability(Stable) @NotNull public String getAttrApplicationArn()
      The Amazon Resource Name (ARN) of the Application.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      A unique identifier for the Application.
    • getCdkTagManager

      @Stability(Stable) @NotNull public TagManager getCdkTagManager()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getCdkTagManager in interface ITaggableV2
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getApplicationSourceConfig

      @Stability(Stable) @NotNull public Object getApplicationSourceConfig()
      The configuration for where the application should be loaded from.
    • setApplicationSourceConfig

      @Stability(Stable) public void setApplicationSourceConfig(@NotNull IResolvable value)
      The configuration for where the application should be loaded from.
    • setApplicationSourceConfig

      @Stability(Stable) public void setApplicationSourceConfig(@NotNull CfnApplication.ApplicationSourceConfigProperty value)
      The configuration for where the application should be loaded from.
    • getDescription

      @Stability(Stable) @NotNull public String getDescription()
      The description of the application.
    • setDescription

      @Stability(Stable) public void setDescription(@NotNull String value)
      The description of the application.
    • getName

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

      @Stability(Stable) public void setName(@NotNull String value)
      The name of the application.
    • getNamespace

      @Stability(Stable) @NotNull public String getNamespace()
      The namespace of the application.
    • setNamespace

      @Stability(Stable) public void setNamespace(@NotNull String value)
      The namespace of the application.
    • getPermissions

      @Stability(Stable) @Nullable public List<String> getPermissions()
      The configuration of events or requests that the application has access to.
    • setPermissions

      @Stability(Stable) public void setPermissions(@Nullable List<String> value)
      The configuration of events or requests that the application has access to.
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
      The tags used to organize, track, or control access for this resource.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)
      The tags used to organize, track, or control access for this resource.