describeLoadBasedAutoScaling method
Describes load-based auto scaling configurations for specified layers. Required Permissions: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information about user permissions, see Managing User Permissions.
May throw ValidationException. May throw ResourceNotFoundException.
Parameter layerIds
:
An array of layer IDs.
Implementation
Future<DescribeLoadBasedAutoScalingResult> describeLoadBasedAutoScaling({
required List<String> layerIds,
}) async {
ArgumentError.checkNotNull(layerIds, 'layerIds');
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'OpsWorks_20130218.DescribeLoadBasedAutoScaling'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'LayerIds': layerIds,
},
);
return DescribeLoadBasedAutoScalingResult.fromJson(jsonResponse.body);
}