getThirdPartyFirewallAssociationStatus method
Future<GetThirdPartyFirewallAssociationStatusResponse>
getThirdPartyFirewallAssociationStatus({
- required ThirdPartyFirewall thirdPartyFirewall,
The onboarding status of a Firewall Manager admin account to third-party firewall vendor tenant.
May throw InternalErrorException.
May throw InvalidInputException.
May throw InvalidOperationException.
May throw ResourceNotFoundException.
Parameter thirdPartyFirewall :
The name of the third-party firewall vendor.
Implementation
Future<GetThirdPartyFirewallAssociationStatusResponse>
getThirdPartyFirewallAssociationStatus({
required ThirdPartyFirewall thirdPartyFirewall,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'AWSFMS_20180101.GetThirdPartyFirewallAssociationStatus'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'ThirdPartyFirewall': thirdPartyFirewall.value,
},
);
return GetThirdPartyFirewallAssociationStatusResponse.fromJson(
jsonResponse.body);
}