updateServiceSettings method

Future<void> updateServiceSettings({
  1. String? explorerEnablingRoleArn,
})

Updates settings configured for Quick Setup.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ThrottlingException. May throw ValidationException.

Parameter explorerEnablingRoleArn : The IAM role used to enable Explorer.

Implementation

Future<void> updateServiceSettings({
  String? explorerEnablingRoleArn,
}) async {
  final $payload = <String, dynamic>{
    if (explorerEnablingRoleArn != null)
      'ExplorerEnablingRoleArn': explorerEnablingRoleArn,
  };
  await _protocol.send(
    payload: $payload,
    method: 'PUT',
    requestUri: '/serviceSettings',
    exceptionFnMap: _exceptionFns,
  );
}