updateConfigurationManager method
Updates a Quick Setup configuration manager.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter managerArn :
The ARN of the configuration manager.
Parameter description :
A description of the configuration manager.
Parameter name :
A name for the configuration manager.
Implementation
Future<void> updateConfigurationManager({
required String managerArn,
String? description,
String? name,
}) async {
final $payload = <String, dynamic>{
if (description != null) 'Description': description,
if (name != null) 'Name': name,
};
await _protocol.send(
payload: $payload,
method: 'PUT',
requestUri: '/configurationManager/${Uri.encodeComponent(managerArn)}',
exceptionFnMap: _exceptionFns,
);
}