interface ComponentInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SystemsManagerSAP.CfnApplication.ComponentInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssystemsmanagersap#CfnApplication_ComponentInfoProperty |
Java | software.amazon.awscdk.services.systemsmanagersap.CfnApplication.ComponentInfoProperty |
Python | aws_cdk.aws_systemsmanagersap.CfnApplication.ComponentInfoProperty |
TypeScript | aws-cdk-lib » aws_systemsmanagersap » CfnApplication » ComponentInfoProperty |
This is information about the component of your SAP application, such as Web Dispatcher.
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 componentInfoProperty: systemsmanagersap.CfnApplication.ComponentInfoProperty = {
componentType: 'componentType',
ec2InstanceId: 'ec2InstanceId',
sid: 'sid',
};
Properties
| Name | Type | Description |
|---|---|---|
| component | string | This string is the type of the component. |
| ec2 | string | This is the Amazon EC2 instance on which your SAP component is running. |
| sid? | string | This string is the SAP System ID of the component. |
componentType?
Type:
string
(optional)
This string is the type of the component.
Accepted value is WD .
ec2InstanceId?
Type:
string
(optional)
This is the Amazon EC2 instance on which your SAP component is running.
Accepted values are alphanumeric.
sid?
Type:
string
(optional)
This string is the SAP System ID of the component.
Accepted values are alphanumeric.

.NET
Go
Java
Python
TypeScript