interface ComponentInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SystemsManagerSAP.Mixins.CfnApplicationPropsMixin.ComponentInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssystemsmanagersap/mixins#CfnApplicationPropsMixin_ComponentInfoProperty |
Java | software.amazon.awscdk.mixins.preview.services.systemsmanagersap.mixins.CfnApplicationPropsMixin.ComponentInfoProperty |
Python | aws_cdk.mixins_preview.aws_systemsmanagersap.mixins.CfnApplicationPropsMixin.ComponentInfoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_systemsmanagersap » mixins » CfnApplicationPropsMixin » 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 { mixins as systemsmanagersap_mixins } from '@aws-cdk/mixins-preview/aws-systemsmanagersap';
const componentInfoProperty: systemsmanagersap_mixins.CfnApplicationPropsMixin.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