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.873Z") @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.systemsmanagersap.*;
 CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder()
         .applicationId("applicationId")
         .applicationType("applicationType")
         // the properties below are optional
         .credentials(List.of(CredentialProperty.builder()
                 .credentialType("credentialType")
                 .databaseName("databaseName")
                 .secretId("secretId")
                 .build()))
         .instances(List.of("instances"))
         .sapInstanceNumber("sapInstanceNumber")
         .sid("sid")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getApplicationId

      @Stability(Stable) @NotNull String getApplicationId()
      The ID of the application.
    • getApplicationType

      @Stability(Stable) @NotNull String getApplicationType()
      The type of the application.
    • getCredentials

      @Stability(Stable) @Nullable default Object getCredentials()
      The credentials of the SAP application.
    • getInstances

      @Stability(Stable) @Nullable default List<String> getInstances()
      The Amazon EC2 instances on which your SAP application is running.
    • getSapInstanceNumber

      @Stability(Stable) @Nullable default String getSapInstanceNumber()
      The SAP instance number of the application.
    • getSid

      @Stability(Stable) @Nullable default String getSid()
      The System ID of the application.
    • getTags

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

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