interface CfnApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SystemsManagerSAP.Mixins.CfnApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssystemsmanagersap/mixins#CfnApplicationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.systemsmanagersap.mixins.CfnApplicationMixinProps |
Python | aws_cdk.mixins_preview.aws_systemsmanagersap.mixins.CfnApplicationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_systemsmanagersap » mixins » CfnApplicationMixinProps |
Properties for CfnApplicationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as systemsmanagersap_mixins } from '@aws-cdk/mixins-preview/aws-systemsmanagersap';
const cfnApplicationMixinProps: systemsmanagersap_mixins.CfnApplicationMixinProps = {
applicationId: 'applicationId',
applicationType: 'applicationType',
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
(optional)
The ID of the application.
applicationType?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript