Class: Aws::SsmSap::Types::ComponentInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::SsmSap::Types::ComponentInfo
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssmsap/types.rb
Overview
This is information about the component of your SAP application, such as Web Dispatcher.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#component_type ⇒ String
This string is the type of the component.
-
#ec2_instance_id ⇒ 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.
Instance Attribute Details
#component_type ⇒ String
This string is the type of the component.
Accepted value is ‘WD`.
340 341 342 343 344 345 346 |
# File 'lib/aws-sdk-ssmsap/types.rb', line 340 class ComponentInfo < Struct.new( :component_type, :sid, :ec2_instance_id) SENSITIVE = [] include Aws::Structure end |
#ec2_instance_id ⇒ String
This is the Amazon EC2 instance on which your SAP component is running.
Accepted values are alphanumeric.
340 341 342 343 344 345 346 |
# File 'lib/aws-sdk-ssmsap/types.rb', line 340 class ComponentInfo < Struct.new( :component_type, :sid, :ec2_instance_id) SENSITIVE = [] include Aws::Structure end |
#sid ⇒ String
This string is the SAP System ID of the component.
Accepted values are alphanumeric.
340 341 342 343 344 345 346 |
# File 'lib/aws-sdk-ssmsap/types.rb', line 340 class ComponentInfo < Struct.new( :component_type, :sid, :ec2_instance_id) SENSITIVE = [] include Aws::Structure end |