Class: Aws::SMS::Types::VmServerAddress
- Inherits:
-
Struct
- Object
- Struct
- Aws::SMS::Types::VmServerAddress
- Defined in:
- gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb
Overview
Note:
When making an API call, you may pass VmServerAddress data as a hash:
{
vm_manager_id: "VmManagerId",
vm_id: "VmId",
}
Represents a VM server location.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#vm_id ⇒ String
The ID of the VM.
-
#vm_manager_id ⇒ String
The ID of the VM manager.
Instance Attribute Details
#vm_id ⇒ String
The ID of the VM.
3142 3143 3144 3145 3146 3147 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 3142 class VmServerAddress < Struct.new( :vm_manager_id, :vm_id) SENSITIVE = [] include Aws::Structure end |
#vm_manager_id ⇒ String
The ID of the VM manager.
3142 3143 3144 3145 3146 3147 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 3142 class VmServerAddress < Struct.new( :vm_manager_id, :vm_id) SENSITIVE = [] include Aws::Structure end |