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:35.591Z") @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.sam.*;
 CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder()
         .location("location")
         // the properties below are optional
         .notificationArns(List.of("notificationArns"))
         .parameters(Map.of(
                 "parametersKey", "parameters"))
         .tags(Map.of(
                 "tagsKey", "tags"))
         .timeoutInMinutes(123)
         .build();
 
  • Method Details

    • getLocation

      @Stability(Stable) @NotNull Object getLocation()
      AWS::Serverless::Application.Location.
    • getNotificationArns

      @Stability(Stable) @Nullable default List<String> getNotificationArns()
      AWS::Serverless::Application.NotificationArns.
    • getParameters

      @Stability(Stable) @Nullable default Object getParameters()
      AWS::Serverless::Application.Parameters.
    • getTags

      @Stability(Stable) @Nullable default Map<String,String> getTags()
      AWS::Serverless::Application.Tags.
    • getTimeoutInMinutes

      @Stability(Stable) @Nullable default Number getTimeoutInMinutes()
      AWS::Serverless::Application.TimeoutInMinutes.
    • builder

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