createRuleGroup method
Future<CreateRuleGroupResponse>
createRuleGroup(
{ - required String changeToken,
- required String metricName,
- required String name,
- List<Tag>? tags,
})
Implementation
Future<CreateRuleGroupResponse> createRuleGroup({
required String changeToken,
required String metricName,
required String name,
List<Tag>? tags,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'AWSWAF_20150824.CreateRuleGroup'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'ChangeToken': changeToken,
'MetricName': metricName,
'Name': name,
if (tags != null) 'Tags': tags,
},
);
return CreateRuleGroupResponse.fromJson(jsonResponse.body);
}