deleteConsoleAuthorizationConfiguration method
Future<DeleteConsoleAuthorizationConfigurationOutput>
deleteConsoleAuthorizationConfiguration({
- String? targetId,
Delete console authorization configuration with automatic scope detection
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw TooManyRequestsError.
May throw ValidationException.
Parameter targetId :
Target account identifier
Implementation
Future<DeleteConsoleAuthorizationConfigurationOutput>
deleteConsoleAuthorizationConfiguration({
String? targetId,
}) async {
final $payload = <String, dynamic>{
if (targetId != null) 'targetId': targetId,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/delete-console-authorization-configuration',
endpoint: _resolveEndpoint(
isControlPlane: true,
),
exceptionFnMap: _exceptionFns,
);
return DeleteConsoleAuthorizationConfigurationOutput.fromJson(response);
}