interface CfnApplicationProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.SystemsManagerSAP.CfnApplicationProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awssystemsmanagersap#CfnApplicationProps | 
|  Java | software.amazon.awscdk.services.systemsmanagersap.CfnApplicationProps | 
|  Python | aws_cdk.aws_systemsmanagersap.CfnApplicationProps | 
|  TypeScript | aws-cdk-lib»aws_systemsmanagersap»CfnApplicationProps | 
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 { aws_systemsmanagersap as systemsmanagersap } from 'aws-cdk-lib';
const cfnApplicationProps: systemsmanagersap.CfnApplicationProps = {
  applicationId: 'applicationId',
  applicationType: 'applicationType',
  // the properties below are optional
  componentsInfo: [{
    componentType: 'componentType',
    ec2InstanceId: 'ec2InstanceId',
    sid: 'sid',
  }],
  credentials: [{
    credentialType: 'credentialType',
    databaseName: 'databaseName',
    secretId: 'secretId',
  }],
  databaseArn: 'databaseArn',
  instances: ['instances'],
  sapInstanceNumber: 'sapInstanceNumber',
  sid: 'sid',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| application | string | The ID of the application. | 
| application | string | The type of the application. | 
| components | IResolvable | (IResolvable | Component)[] | This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher. | 
| credentials? | IResolvable | (IResolvable | Credential)[] | The credentials of the SAP application. | 
| database | string | The Amazon Resource Name (ARN) of the database. | 
| instances? | string[] | The Amazon EC2 instances on which your SAP application is running. | 
| sap | string | The SAP instance number of the application. | 
| sid? | string | The System ID of the application. | 
| tags? | Cfn[] | The tags on the application. | 
applicationId
Type:
string
The ID of the application.
applicationType
Type:
string
The type of the application.
componentsInfo?
Type:
IResolvable | (IResolvable | Component)[]
(optional)
This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher.
credentials?
Type:
IResolvable | (IResolvable | Credential)[]
(optional)
The credentials of the SAP application.
databaseArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the database.
instances?
Type:
string[]
(optional)
The Amazon EC2 instances on which your SAP application is running.
sapInstanceNumber?
Type:
string
(optional)
The SAP instance number of the application.
sid?
Type:
string
(optional)
The System ID of the application.
tags?
Type:
Cfn[]
(optional)
The tags on the application.
