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