describeLoadBalancerTargetGroups method

Future<DescribeLoadBalancerTargetGroupsResponse> describeLoadBalancerTargetGroups({
  1. required String autoScalingGroupName,
  2. int? maxRecords,
  3. String? nextToken,
})

Describes the target groups for the specified Auto Scaling group.

May throw ResourceContentionFault.

Parameter autoScalingGroupName : The name of the Auto Scaling group.

Parameter maxRecords : The maximum number of items to return with this call. The default value is 100 and the maximum value is 100.

Parameter nextToken : The token for the next set of items to return. (You received this token from a previous call.)

Implementation

Future<DescribeLoadBalancerTargetGroupsResponse>
    describeLoadBalancerTargetGroups({
  required String autoScalingGroupName,
  int? maxRecords,
  String? nextToken,
}) async {
  ArgumentError.checkNotNull(autoScalingGroupName, 'autoScalingGroupName');
  _s.validateStringLength(
    'autoScalingGroupName',
    autoScalingGroupName,
    1,
    255,
    isRequired: true,
  );
  final $request = <String, dynamic>{};
  $request['AutoScalingGroupName'] = autoScalingGroupName;
  maxRecords?.also((arg) => $request['MaxRecords'] = arg);
  nextToken?.also((arg) => $request['NextToken'] = arg);
  final $result = await _protocol.send(
    $request,
    action: 'DescribeLoadBalancerTargetGroups',
    version: '2011-01-01',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    shape: shapes['DescribeLoadBalancerTargetGroupsRequest'],
    shapes: shapes,
    resultWrapper: 'DescribeLoadBalancerTargetGroupsResult',
  );
  return DescribeLoadBalancerTargetGroupsResponse.fromXml($result);
}