aws-cdk-lib.aws_systemsmanagersap.CfnApplicationProps

interface CfnApplicationProps

LanguageType name
.NETAmazon.CDK.AWS.SystemsManagerSAP.CfnApplicationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssystemsmanagersap#CfnApplicationProps
Javasoftware.amazon.awscdk.services.systemsmanagersap.CfnApplicationProps
Pythonaws_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
  credentials: [{
    credentialType: 'credentialType',
    databaseName: 'databaseName',
    secretId: 'secretId',
  }],
  instances: ['instances'],
  sapInstanceNumber: 'sapInstanceNumber',
  sid: 'sid',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
applicationIdstringThe ID of the application.
applicationTypestringThe type of the application.
credentials?IResolvable | IResolvable | CredentialProperty[]The credentials of the SAP application.
instances?string[]The Amazon EC2 instances on which your SAP application is running.
sapInstanceNumber?stringThe SAP instance number of the application.
sid?stringThe System ID of the application.
tags?CfnTag[]The tags on the application.

applicationId

Type: string

The ID of the application.


applicationType

Type: string

The type of the application.


credentials?

Type: IResolvable | IResolvable | CredentialProperty[] (optional)

The credentials of the SAP application.


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: CfnTag[] (optional)

The tags on the application.