InstancesPorts parameters
InstancesPorts
A list of instance ID and port ID combinations registered in the load balancer.
- Type : List
- Default : -
- Required : No
- Valid values : -
-
Updated : Yes
-
InstanceId
The instance ID.
- Type : String
- Default : -
- Required : Yes
- Valid values : -
- Updated : Yes
-
PortId
The instance port ID.
The target port ID in cases where the instance has multiple ports.
- Type : String
- Default : -
- Required : Yes
- Valid values : -
- Updated : Yes
-
For example:
InstancesPorts: [{'InstanceId': 'instance1uuid', 'PortId': 'instance1portuuid'}] InstancesPorts: [{'InstanceId': 'instance1uuid', 'PortId': 'instance1portuuid'}, {'InstanceId': 'instance2uuid', 'PortId': 'instance2portuuid'}]
CAUTION:Note that the Instances and the InstancesPorts parameters are non-exclusive.
-
Below is a normal example.
Instances: ['instance1uuid'] InstancesPorts: [{'InstanceId': 'instance2uuid', 'PortId': 'instance2portuuid'}]
-
Below is an abnormal example. (Only one of the two parameters can be used for the same instance.)
Instances: ['instance1uuid'] InstancesPorts: [{'InstanceId': 'instance1uuid', 'PortId': 'instance1portuuid'}]
-
-