Class: Aws::SsmSap::Types::ComponentInfo

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#component_typeString

This string is the type of the component.

Accepted value is ‘WD`.

Returns:

  • (String)


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_idString

This is the Amazon EC2 instance on which your SAP component is running.

Accepted values are alphanumeric.

Returns:

  • (String)


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

#sidString

This string is the SAP System ID of the component.

Accepted values are alphanumeric.

Returns:

  • (String)


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