getLoggingConfiguration method
Future<GetLoggingConfigurationResponse>
getLoggingConfiguration(
{ - required String resourceArn,
})
Implementation
Future<GetLoggingConfigurationResponse> getLoggingConfiguration({
required String resourceArn,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'AWSWAF_Regional_20161128.GetLoggingConfiguration'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'ResourceArn': resourceArn,
},
);
return GetLoggingConfigurationResponse.fromJson(jsonResponse.body);
}